Merge pull request #639 from jmrenouard/master

A lot of github actions
This commit is contained in:
Jean-Marie Renouard 2023-03-23 17:47:22 +01:00 committed by GitHub
commit 5250031d97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
189 changed files with 254 additions and 211 deletions

View file

@ -1,59 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: Compile MT examples
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
- name: Set up MySQL
uses: mirromutth/mysql-action@v1.1
with:
mysql root password: "root"
mysql version: "8.0"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: Cloning test_db dataset
run: |
git clone https://github.com/datacharmer/test_db.git
- name: Injecting test_db dataset
run: |
sleep 5s
cd test_db
netstat -ltpn
mysql -e 'select version();'
mysql -e 'CREATE DATABASE data;'
mysql data< ./employees.sql
cd -
rm -rf test_db
# Runs a single command using the runners shell
- name: Run verbose mode with dumpdir result
run: |
mkdir -p ./examples/github/result
sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose --dumpdir=./examples/github/result --json | tee -a ./examples/github/result/result.json
# Runs a single command using the runners shell
- name: Commit example result to repo
run: |
git config --global user.name "Jean-Marie Renouard"
git config --global user.email "jmrenouard@gmail.com"
git add .
git commit -m "Commit example result for employees database for Actions"
git push

View file

@ -0,0 +1,74 @@
# This is a basic workflow to help you get started with Actions
name: Compile MT examples for MariaDB
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
mysql_examples:
# This workflow contains a single job called "build"
strategy:
matrix:
MARIADB_VERSION: [10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9]
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
- name: Set up MySQL
uses: shogo82148/actions-setup-mysql@v1
with:
distribution: 'mariadb'
root-password: "root"
mysql-version: "${{ matrix.MARIADB_VERSION }}"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: Cloning test_db dataset
run: |
git clone https://github.com/datacharmer/test_db.git
- name: Test database is Up and Running
run: |
sleep 5s
sudo netstat -ltpn
mysql -e 'select version();'
- name: Injecting test_db dataset
run: |
cd test_db
mysql -e 'CREATE DATABASE data;'
mysql data< ./employees.sql
cd -
rm -rf test_db
# Runs a single command using the runners shell
- name: Json Run verbose mode with dumpdir result
run: |
mkdir -p ./examples/github/result/mariadb/${{ matrix.MARIADB_VERSION }}
sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose --dumpdir=./examples/github/result/mariadb/${{ matrix.MARIADB_VERSION }} --json | tee -a ./examples/github/result/mariadb/${{ matrix.MARIADB_VERSION }}/result.json
- name: Standard Run verbose mode without dumpdir result
run: |
sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose | tee -a ./examples/github/result/mariadb/${{ matrix.MARIADB_VERSION }}/result.txt
- name: Adding examples to Git
run: |
git add ./examples/github/result/mariadb/${{ matrix.MARIADB_VERSION }}/* || true
- name: Run the Action Commit
uses: devops-infra/action-commit-push@master
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
add_timestamp: true
commit_prefix: "[AUTO]"
commit_message: "Updates MariaDb result examples (via Actions)"
force: false
target_branch: examples-mariadb-${{ matrix.MARIADB_VERSION }}

View file

@ -0,0 +1,74 @@
# This is a basic workflow to help you get started with Actions
name: Compile MT examples For MySQL
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
mysql_examples:
# This workflow contains a single job called "build"
strategy:
matrix:
MYSQL_VERSION: [5.6, 5.7, 8.0]
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
- name: Set up MySQL
uses: shogo82148/actions-setup-mysql@v1
with:
distribution: 'mysql'
root-password: "root"
mysql-version: "${{ matrix.MYSQL_VERSION }}"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: Cloning test_db dataset
run: |
git clone https://github.com/datacharmer/test_db.git
- name: Test database is Up and Running
run: |
sleep 5s
sudo netstat -ltpn
mysql -e 'select version();'
- name: Injecting test_db dataset
run: |
cd test_db
mysql -e 'CREATE DATABASE data;'
mysql data< ./employees.sql
cd -
rm -rf test_db
# Runs a single command using the runners shell
- name: Json Run verbose mode with dumpdir result
run: |
mkdir -p ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}
sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose --dumpdir=./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }} --json | tee -a ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/result.json
- name: Standard Run verbose mode without dumpdir result
run: |
sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose | tee -a ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/result.txt
- name: Adding examples to Git
run: |
git add ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/* || true
- name: Run the Action Commit
uses: devops-infra/action-commit-push@master
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
add_timestamp: true
commit_prefix: "[AUTO]"
commit_message: "Updates MySQL result examples (via Actions)"
force: false
target_branch: examples-mysql-${{ matrix.MYSQL_VERSION }}

View file

@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: CI for MySQL Tuner
name: CI for MySQL Tuner for MySQL 5.7 and 8.0
# Controls when the workflow will run
on:
@ -16,13 +16,15 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
test_help:
strategy:
matrix:
MYSQL_VERSION: [5.7, 8.0]
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
@ -30,13 +32,46 @@ jobs:
uses: mirromutth/mysql-action@v1.1
with:
mysql root password: "root"
mysql version: "8.0"
mysql version: "${{ matrix.MYSQL_VERSION }}"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: waiting database
run: |
sleep 20s
- name: Run help mode
run: |
sleep 20s
sudo perl ./mysqltuner.pl --help
test_with_empty_db:
needs: test_help
strategy:
matrix:
MYSQL_VERSION: [5.7, 8.0]
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
- name: Set up MySQL
uses: mirromutth/mysql-action@v1.1
with:
mysql root password: "root"
mysql version: "${{ matrix.MYSQL_VERSION }}"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: waiting database
run: |
sleep 20s
# Runs a single command using the runners shell
- name: Run verbose mode
run: sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose

View file

@ -10,13 +10,15 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
run_mt_with_db:
strategy:
matrix:
MYSQL_VERSION: [5.7, 8.0]
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
@ -24,11 +26,12 @@ jobs:
uses: mirromutth/mysql-action@v1.1
with:
mysql root password: "root"
mysql version: "8.0"
mysql version: "${{ matrix.MYSQL_VERSION }}"
- name: Injecting credentials
run: |
echo -e "[client]\nuser=root\npassword=root\nhost=127.0.0.1\nprotocol=TCP" > $HOME/.my.cnf
- name: Cloning test_db dataset
run: |
git clone https://github.com/datacharmer/test_db.git
@ -43,6 +46,7 @@ jobs:
mysql data< ./employees.sql
cd -
rm -rf test_db
# Runs a single command using the runners shell
- name: Run help mode
run: perl ./mysqltuner.pl --help

View file

@ -4,6 +4,10 @@ name: CVE and Docs update
# Controls when the workflow will run
on:
# Scheudle every sunday at 00:00
schedule:
- cron: '0 0 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@ -16,7 +20,6 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Setup MySQL Tuner repository
uses: actions/checkout@v3
@ -42,4 +45,4 @@ jobs:
commit_prefix: "[AUTO]"
commit_message: "Updates CVE and docs (via Actions)"
force: false
target_branch: update/version
target_branch: "cve-docs"

4
.gitignore vendored
View file

@ -9,9 +9,7 @@ Vagrant/data
Vagrant/.vagrant
contents
contents/*
result_*
result.html
result.txt
reports_*
golang/prog-*
.vscode
test_db/**

View file

@ -18,10 +18,9 @@
You can find more details on these indicators here:
[Indicators description](https://github.com/major/MySQLTuner-perl/blob/master/INTERNALS.md).
![MysqlTuner](https://github.com/major/MySQLTuner-perl/blob/master/mysqltuner.png)
MySQLTuner needs you:
MySQLTuner needs you
===
**MySQLTuner** needs contributors for documentation, code and feedback..
@ -37,11 +36,18 @@ MySQLTuner needs you:
Compatibility
====
Test result are available here: [Travis CI/MySQLTuner-perl](https://travis-ci.org/major/MySQLTuner-perl)
* MySQL 8.0 (partial support, password checks don't work)
* Percona Server 8.0 (partial support, password checks don't work)
* MySQL 5.7 (full support)
* Percona Server 5.7 (full support)
* MariaDB 10.11 (full support)
* MariaDB 10.10 (full support)
* MariaDB 10.9 (full support)
* MariaDB 10.8 (full support)
* MariaDB 10.7 (full support)
* MariaDB 10.6 (full support)
* MariaDB 10.5 (full support)
* MariaDB 10.4 (full support)
@ -59,15 +65,17 @@ Test result are available here: [Travis CI/MySQLTuner-perl](https://travis-ci.or
* MariaDB 10.0 (no support, deprecated version)
* MySQL 3.23, 4.0, 4.1, 5.0, 5.1 (no support - deprecated version)
*** Windows Support is partial ***
* Windows is now supported at this time
***Windows Support is partial***
* Windows is now supported at this time
* Successfully run MySQLtuner across WSL2 (Windows Subsystem Linux )
* [https://docs.microsoft.com/en-us/windows/wsl/](https://docs.microsoft.com/en-us/windows/wsl/)
*** UNSUPPORTED ENVIRONMENTS - NEED HELP FOR THAT :) ***
***UNSUPPORTED ENVIRONMENTS - NEED HELP FOR THAT :)***
* Cloud based is not supported at this time (Help wanted !!!!! GCP, AWS, Azure support asked)
*** Unsupported storage engines: PRs welcome ***
***Unsupported storage engines: PRs welcome***
* NDB is not supported feel free to Pull Request code :)
* MyISAM is to old is no longer active
* RockDB
@ -80,7 +88,7 @@ Test result are available here: [Travis CI/MySQLTuner-perl](https://travis-ci.or
* CVE vulnerabilities detection support from [https://cve.mitre.org](https://cve.mitre.org)
*** MINIMAL REQUIREMENTS ***
***MINIMAL REQUIREMENTS***
* Perl 5.6 or later (with [perl-doc](http://search.cpan.org/~dapm/perl-5.14.4/pod/perldoc.pod) package)
* Unix/Linux based operating system (tested on Linux, BSD variants, and Solaris variants)
@ -88,6 +96,7 @@ Test result are available here: [Travis CI/MySQLTuner-perl](https://travis-ci.or
***WARNING***
--
It is **extremely important** for you to fully understand each change
you make to a MySQL database server. If you don't understand portions
of the script's output, or if you don't understand the recommendations,
@ -101,7 +110,6 @@ It's **also important** to wait at least a day of uptime to get accurate results
**Seriously - please review the FAQ section below.**
Security recommendations
--
@ -111,6 +119,7 @@ Read link for more details [Issue #289](https://github.com/major/MySQLTuner-perl
What MySQLTuner is checking exactly ?
--
All checks done by **MySQLTuner** are documented in [MySQLTuner Internals](https://github.com/major/MySQLTuner-perl/blob/master/INTERNALS.md) documentation.
Download/Installation
@ -120,7 +129,7 @@ Choose one of these methods:
1) Script direct download (the simplest and shortest method):
```
```bash
wget http://mysqltuner.pl/ -O mysqltuner.pl
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/basic_passwords.txt -O basic_passwords.txt
wget https://raw.githubusercontent.com/major/MySQLTuner-perl/master/vulnerabilities.csv -O vulnerabilities.csv
@ -135,75 +144,83 @@ Sysschema is installed by default under MySQL 5.7 and MySQL 8 from Oracle.
By default, on MySQL 5.6/5.7/8, performance schema is enabled by default.
For previous MySQL 5.6 version, you can follow this command to create a new database sys containing very useful view on Performance schema:
curl "https://codeload.github.com/mysql/mysql-sys/zip/master" > sysschema.zip
# check zip file
unzip -l sysschema.zip
unzip sysschema.zip
cd mysql-sys-master
mysql -uroot -p < sys_56.sql
```bash
curl "https://codeload.github.com/mysql/mysql-sys/zip/master" > sysschema.zip
# check zip file
unzip -l sysschema.zip
unzip sysschema.zip
cd mysql-sys-master
mysql -uroot -p < sys_56.sql
```
Optional Performance schema and Sysschema installation for MariaDB < 10.6
--
Sysschema is not installed by default under MariaDB prior to 10.6 [MariaDB sys](https://mariadb.com/kb/en/sys-schema/)
Sysschema is not installed by default under MariaDB prior to 10.6 [MariaDB sys](https://mariadb.com/kb/en/sys-schema/)
By default, on MariaDB, performance schema is disabled by default. consider activating performance schema across your my.cnf configuration file:
[mysqld]
performance_schema = on
```ini
[mysqld]
performance_schema = on
```
You can follow this command to create a new database sys containing very useful view on Performance schema:
curl "https://codeload.github.com/FromDual/mariadb-sys/zip/master" > mariadb-sys.zip
# check zip file
unzip -l mariadb-sys.zip
unzip mariadb-sys.zip
cd mariadb-sys-master/
mysql -u root -p < ./sys_10.sql
```bash
curl "https://codeload.github.com/FromDual/mariadb-sys/zip/master" > mariadb-sys.zip
# check zip file
unzip -l mariadb-sys.zip
unzip mariadb-sys.zip
cd mariadb-sys-master/
mysql -u root -p < ./sys_10.sql
```
Errors & solutions for performance schema installation
ERROR at line 21: Failed to open file './tables/sys_config_data_10.sql -- ported', error: 2
Have a look at #452 solution given by @ericx
ERROR at line 21: Failed to open file './tables/sys_config_data_10.sql -- ported', error: 2
Have a look at #452 solution given by @ericx
Performance tips
--
Metadata statistic updates can impact strongly performance of database servers and MySQLTuner.
Be sure that innodb_stats_on_metadata is disabled.
set global innodb_stats_on_metadata = 0;
```bash
set global innodb_stats_on_metadata = 0;
```
Specific usage
--
__Usage:__ Minimal usage locally
perl mysqltuner.pl --host 127.0.0.1
perl mysqltuner.pl --host 127.0.0.1
Of course, you can add the execute bit (`chmod +x mysqltuner.pl`) so you can execute it without calling perl directly.
__Usage:__ Minimal usage remotely
perl mysqltuner.pl --host targetDNS_IP --user admin_user --pass admin_password
perl mysqltuner.pl --host targetDNS_IP --user admin_user --pass admin_password
__Usage:__ Enable maximum output information around MySQL/MariaDb without debugging
perl mysqltuner.pl --verbose
perl mysqltuner.pl --buffers --dbstat --idxstat --sysstat --pfstat --tbstat
perl mysqltuner.pl --verbose
perl mysqltuner.pl --buffers --dbstat --idxstat --sysstat --pfstat --tbstat
__Usage:__ Enable CVE vulnerabilities check for your MariaDB or MySQL version
perl mysqltuner.pl --cvefile=vulnerabilities.csv
perl mysqltuner.pl --cvefile=vulnerabilities.csv
__Usage:__ Write your result in a file with information displayed
perl mysqltuner.pl --outputfile /tmp/result_mysqltuner.txt
perl mysqltuner.pl --outputfile /tmp/result_mysqltuner.txt
__Usage:__ Write your result in a file **without outputting information**
perl mysqltuner.pl --silent --outputfile /tmp/result_mysqltuner.txt
perl mysqltuner.pl --silent --outputfile /tmp/result_mysqltuner.txt
__Usage:__ Using template model to customize your reporting file based on [Text::Template](https://metacpan.org/pod/Text::Template) syntax.

View file

@ -1 +0,0 @@
"big5","big5_chinese_ci","Big5 Traditional Chinese","2""dec8","dec8_swedish_ci","DEC West European","1""cp850","cp850_general_ci","DOS West European","1""hp8","hp8_english_ci","HP West European","1""koi8r","koi8r_general_ci","KOI8-R Relcom Russian","1""latin1","latin1_swedish_ci","cp1252 West European","1""latin2","latin2_general_ci","ISO 8859-2 Central European","1""swe7","swe7_swedish_ci","7bit Swedish","1""ascii","ascii_general_ci","US ASCII","1""ujis","ujis_japanese_ci","EUC-JP Japanese","3""sjis","sjis_japanese_ci","Shift-JIS Japanese","2""hebrew","hebrew_general_ci","ISO 8859-8 Hebrew","1""tis620","tis620_thai_ci","TIS620 Thai","1""euckr","euckr_korean_ci","EUC-KR Korean","2""koi8u","koi8u_general_ci","KOI8-U Ukrainian","1""gb2312","gb2312_chinese_ci","GB2312 Simplified Chinese","2""greek","greek_general_ci","ISO 8859-7 Greek","1""cp1250","cp1250_general_ci","Windows Central European","1""gbk","gbk_chinese_ci","GBK Simplified Chinese","2""latin5","latin5_turkish_ci","ISO 8859-9 Turkish","1""armscii8","armscii8_general_ci","ARMSCII-8 Armenian","1""utf8mb3","utf8mb3_general_ci","UTF-8 Unicode","3""ucs2","ucs2_general_ci","UCS-2 Unicode","2""cp866","cp866_general_ci","DOS Russian","1""keybcs2","keybcs2_general_ci","DOS Kamenicky Czech-Slovak","1""macce","macce_general_ci","Mac Central European","1""macroman","macroman_general_ci","Mac West European","1""cp852","cp852_general_ci","DOS Central European","1""latin7","latin7_general_ci","ISO 8859-13 Baltic","1""cp1251","cp1251_general_ci","Windows Cyrillic","1""utf16","utf16_general_ci","UTF-16 Unicode","4""utf16le","utf16le_general_ci","UTF-16LE Unicode","4""cp1256","cp1256_general_ci","Windows Arabic","1""cp1257","cp1257_general_ci","Windows Baltic","1""utf32","utf32_general_ci","UTF-32 Unicode","4""binary","binary","Binary pseudo charset","1""geostd8","geostd8_general_ci","GEOSTD8 Georgian","1""cp932","cp932_japanese_ci","SJIS for Windows Japanese","2""eucjpms","eucjpms_japanese_ci","UJIS for Windows Japanese","3""gb18030","gb18030_chinese_ci","China National Standard GB18030","4""utf8mb4","utf8mb4_0900_ai_ci","UTF-8 Unicode","4"
1 big5 big5_chinese_ci Big5 Traditional Chinese 2"dec8 dec8_swedish_ci DEC West European 1"cp850 cp850_general_ci DOS West European 1"hp8 hp8_english_ci HP West European 1"koi8r koi8r_general_ci KOI8-R Relcom Russian 1"latin1 latin1_swedish_ci cp1252 West European 1"latin2 latin2_general_ci ISO 8859-2 Central European 1"swe7 swe7_swedish_ci 7bit Swedish 1"ascii ascii_general_ci US ASCII 1"ujis ujis_japanese_ci EUC-JP Japanese 3"sjis sjis_japanese_ci Shift-JIS Japanese 2"hebrew hebrew_general_ci ISO 8859-8 Hebrew 1"tis620 tis620_thai_ci TIS620 Thai 1"euckr euckr_korean_ci EUC-KR Korean 2"koi8u koi8u_general_ci KOI8-U Ukrainian 1"gb2312 gb2312_chinese_ci GB2312 Simplified Chinese 2"greek greek_general_ci ISO 8859-7 Greek 1"cp1250 cp1250_general_ci Windows Central European 1"gbk gbk_chinese_ci GBK Simplified Chinese 2"latin5 latin5_turkish_ci ISO 8859-9 Turkish 1"armscii8 armscii8_general_ci ARMSCII-8 Armenian 1"utf8mb3 utf8mb3_general_ci UTF-8 Unicode 3"ucs2 ucs2_general_ci UCS-2 Unicode 2"cp866 cp866_general_ci DOS Russian 1"keybcs2 keybcs2_general_ci DOS Kamenicky Czech-Slovak 1"macce macce_general_ci Mac Central European 1"macroman macroman_general_ci Mac West European 1"cp852 cp852_general_ci DOS Central European 1"latin7 latin7_general_ci ISO 8859-13 Baltic 1"cp1251 cp1251_general_ci Windows Cyrillic 1"utf16 utf16_general_ci UTF-16 Unicode 4"utf16le utf16le_general_ci UTF-16LE Unicode 4"cp1256 cp1256_general_ci Windows Arabic 1"cp1257 cp1257_general_ci Windows Baltic 1"utf32 utf32_general_ci UTF-32 Unicode 4"binary binary Binary pseudo charset 1"geostd8 geostd8_general_ci GEOSTD8 Georgian 1"cp932 cp932_japanese_ci SJIS for Windows Japanese 2"eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3"gb18030 gb18030_chinese_ci China National Standard GB18030 4"utf8mb4 utf8mb4_0900_ai_ci UTF-8 Unicode 4

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"ndbcluster","NO","Clustered, fault-tolerant tables","NULL","NULL","NULL""FEDERATED","NO","Federated MySQL storage engine","NULL","NULL","NULL""MEMORY","YES","Hash based, stored in memory, useful for temporary tables","NO","NO","NO""InnoDB","DEFAULT","Supports transactions, row-level locking, and foreign keys","YES","YES","YES""PERFORMANCE_SCHEMA","YES","Performance Schema","NO","NO","NO""MyISAM","YES","MyISAM storage engine","NO","NO","NO""ndbinfo","NO","MySQL Cluster system information storage engine","NULL","NULL","NULL""MRG_MYISAM","YES","Collection of identical MyISAM tables","NO","NO","NO""BLACKHOLE","YES","/dev/null storage engine (anything you write to it disappears)","NO","NO","NO""CSV","YES","CSV storage engine","NO","NO","NO""ARCHIVE","YES","Archive storage engine","NO","NO","NO"
1 ndbcluster NO Clustered, fault-tolerant tables NULL NULL NULL"FEDERATED NO Federated MySQL storage engine NULL NULL NULL"MEMORY YES Hash based, stored in memory, useful for temporary tables NO NO NO"InnoDB DEFAULT Supports transactions, row-level locking, and foreign keys YES YES YES"PERFORMANCE_SCHEMA YES Performance Schema NO NO NO"MyISAM YES MyISAM storage engine NO NO NO"ndbinfo NO MySQL Cluster system information storage engine NULL NULL NULL"MRG_MYISAM YES Collection of identical MyISAM tables NO NO NO"BLACKHOLE YES /dev/null storage engine (anything you write to it disappears) NO NO NO"CSV YES CSV storage engine NO NO NO"ARCHIVE YES Archive storage engine NO NO NO

View file

@ -1 +0,0 @@
"3","./employees/departments.ibd","TABLESPACE","employees/departments","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","0","0","1048576","114688","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","0","NULL","NULL","NULL","NULL","NORMAL","NULL""5","./employees/dept_emp.ibd","TABLESPACE","employees/dept_emp","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","0","25","1048576","114688","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","4194304","NULL","NULL","NULL","NULL","NORMAL","NULL""4","./employees/dept_manager.ibd","TABLESPACE","employees/dept_manager","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","0","0","1048576","114688","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","0","NULL","NULL","NULL","NULL","NORMAL","NULL""2","./employees/employees.ibd","TABLESPACE","employees/employees","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","3","22","1048576","114688","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","4194304","NULL","NULL","NULL","NULL","NORMAL","NULL""7","./employees/salaries.ibd","TABLESPACE","employees/salaries","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","2","104","1048576","114688","NULL","4194304","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","4194304","NULL","NULL","NULL","NULL","NORMAL","NULL""6","./employees/titles.ibd","TABLESPACE","employees/titles","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","2","27","1048576","114688","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","4194304","NULL","NULL","NULL","NULL","NORMAL","NULL""4294967293","./ibtmp1","TEMPORARY","innodb_temporary","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","2","12","1048576","12582912","NULL","67108864","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","6291456","NULL","NULL","NULL","NULL","NORMAL","NULL""1","./sys/sys_config.ibd","TABLESPACE","sys/sys_config","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","0","0","1048576","0","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","0","NULL","NULL","NULL","NULL","NORMAL","NULL""4294967279","./undo_001","UNDO LOG","innodb_undo_001","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","4","16","1048576","16777216","NULL","16777216","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","8388608","NULL","NULL","NULL","NULL","NORMAL","NULL""4294967278","./undo_002","UNDO LOG","innodb_undo_002","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","4","16","1048576","16777216","NULL","16777216","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","8388608","NULL","NULL","NULL","NULL","NORMAL","NULL""0","./ibdata1","TABLESPACE","innodb_system","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","2","12","1048576","12582912","NULL","67108864","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","6291456","NULL","NULL","NULL","NULL","NORMAL","NULL""4294967294","./mysql.ibd","TABLESPACE","mysql","","NULL","NULL","NULL","NULL","InnoDB","NULL","NULL","NULL","2","30","1048576","0","NULL","1048576","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","NULL","4194304","NULL","NULL","NULL","NULL","NORMAL","NULL"
1 3 ./employees/departments.ibd TABLESPACE employees/departments NULL NULL NULL NULL InnoDB NULL NULL NULL 0 0 1048576 114688 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 0 NULL NULL NULL NULL NORMAL NULL"5 ./employees/dept_emp.ibd TABLESPACE employees/dept_emp NULL NULL NULL NULL InnoDB NULL NULL NULL 0 25 1048576 114688 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 4194304 NULL NULL NULL NULL NORMAL NULL"4 ./employees/dept_manager.ibd TABLESPACE employees/dept_manager NULL NULL NULL NULL InnoDB NULL NULL NULL 0 0 1048576 114688 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 0 NULL NULL NULL NULL NORMAL NULL"2 ./employees/employees.ibd TABLESPACE employees/employees NULL NULL NULL NULL InnoDB NULL NULL NULL 3 22 1048576 114688 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 4194304 NULL NULL NULL NULL NORMAL NULL"7 ./employees/salaries.ibd TABLESPACE employees/salaries NULL NULL NULL NULL InnoDB NULL NULL NULL 2 104 1048576 114688 NULL 4194304 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 4194304 NULL NULL NULL NULL NORMAL NULL"6 ./employees/titles.ibd TABLESPACE employees/titles NULL NULL NULL NULL InnoDB NULL NULL NULL 2 27 1048576 114688 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 4194304 NULL NULL NULL NULL NORMAL NULL"4294967293 ./ibtmp1 TEMPORARY innodb_temporary NULL NULL NULL NULL InnoDB NULL NULL NULL 2 12 1048576 12582912 NULL 67108864 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 6291456 NULL NULL NULL NULL NORMAL NULL"1 ./sys/sys_config.ibd TABLESPACE sys/sys_config NULL NULL NULL NULL InnoDB NULL NULL NULL 0 0 1048576 0 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 0 NULL NULL NULL NULL NORMAL NULL"4294967279 ./undo_001 UNDO LOG innodb_undo_001 NULL NULL NULL NULL InnoDB NULL NULL NULL 4 16 1048576 16777216 NULL 16777216 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 8388608 NULL NULL NULL NULL NORMAL NULL"4294967278 ./undo_002 UNDO LOG innodb_undo_002 NULL NULL NULL NULL InnoDB NULL NULL NULL 4 16 1048576 16777216 NULL 16777216 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 8388608 NULL NULL NULL NULL NORMAL NULL"0 ./ibdata1 TABLESPACE innodb_system NULL NULL NULL NULL InnoDB NULL NULL NULL 2 12 1048576 12582912 NULL 67108864 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 6291456 NULL NULL NULL NULL NORMAL NULL"4294967294 ./mysql.ibd TABLESPACE mysql NULL NULL NULL NULL InnoDB NULL NULL NULL 2 30 1048576 0 NULL 1048576 NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL 4194304 NULL NULL NULL NULL NORMAL NULL

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"0","8192","718","7220","2645","102","0","0","0","0","776","2102297","12.29723874520907","559.9943210756194","2133","10224","11131","22.63631845455682","27.727531947796244","11.788117395885127","20625424","993","3","178","266","0","0","0","6409","21","0","0"
1 0 8192 718 7220 2645 102 0 0 0 0 776 2102297 12.29723874520907 559.9943210756194 2133 10224 11131 22.63631845455682 27.727531947796244 11.788117395885127 20625424 993 3 178 266 0 0 0 6409 21 0 0

View file

@ -1 +0,0 @@
"4294967294","2","1""4294967294","3","1""4294967294","4","1""4294967294","7","1""4294967294","8","1""4294967294","9","1""4294967294","10","1""4294967294","11","1""4294967294","12","1""4294967294","14","1""4294967294","15","2""4294967294","17","1""4294967294","18","1""4294967294","19","1""4294967294","21","3""4294967294","22","52""4294967294","23","15""4294967294","27","1""4294967294","33","1""4294967294","36","1""4294967294","38","1""4294967294","39","1""4294967294","40","5""4294967294","46","1""4294967294","47","3""4294967294","48","1""4294967294","50","1""4294967294","51","1""4294967294","52","1""4294967294","53","1""4294967294","56","8""4294967294","57","1""4294967294","58","1""4294967294","59","1""4294967294","60","1""4294967294","61","1""4294967294","62","1""4294967294","63","1""4294967294","64","1""4294967294","72","1""4294967294","77","1""4294967294","78","37""4294967294","79","3""4294967294","84","1""4294967294","87","1""4294967294","89","1""4294967294","90","1""4294967294","94","1""4294967294","99","1""4294967294","101","1""4294967294","107","1""4294967294","146","8""4294967294","147","3""4294967294","148","1""4294967294","149","1""4294967294","152","5""4294967294","150","5""4294967294","151","6""4294967294","135","1""4294967294","136","1""4294967294","137","1""4294967294","138","1""4294967294","139","1""4294967294","140","1""4294967294","145","1""2","158","473""3","159","1""3","160","1""5","163","1""5","164","1""6","165","60""7","166","5688"
1 4294967294 2 1"4294967294 3 1"4294967294 4 1"4294967294 7 1"4294967294 8 1"4294967294 9 1"4294967294 10 1"4294967294 11 1"4294967294 12 1"4294967294 14 1"4294967294 15 2"4294967294 17 1"4294967294 18 1"4294967294 19 1"4294967294 21 3"4294967294 22 52"4294967294 23 15"4294967294 27 1"4294967294 33 1"4294967294 36 1"4294967294 38 1"4294967294 39 1"4294967294 40 5"4294967294 46 1"4294967294 47 3"4294967294 48 1"4294967294 50 1"4294967294 51 1"4294967294 52 1"4294967294 53 1"4294967294 56 8"4294967294 57 1"4294967294 58 1"4294967294 59 1"4294967294 60 1"4294967294 61 1"4294967294 62 1"4294967294 63 1"4294967294 64 1"4294967294 72 1"4294967294 77 1"4294967294 78 37"4294967294 79 3"4294967294 84 1"4294967294 87 1"4294967294 89 1"4294967294 90 1"4294967294 94 1"4294967294 99 1"4294967294 101 1"4294967294 107 1"4294967294 146 8"4294967294 147 3"4294967294 148 1"4294967294 149 1"4294967294 152 5"4294967294 150 5"4294967294 151 6"4294967294 135 1"4294967294 136 1"4294967294 137 1"4294967294 138 1"4294967294 139 1"4294967294 140 1"4294967294 145 1"2 158 473"3 159 1"3 160 1"5 163 1"5 164 1"6 165 60"7 166 5688

View file

@ -1 +0,0 @@
"1024","0","0","0","0","0""2048","0","0","0","0","0""4096","0","0","0","0","0""8192","0","0","0","0","0""16384","0","0","0","0","0"
1 1024 0 0 0 0 0"2048 0 0 0 0 0"4096 0 0 0 0 0"8192 0 0 0 0 0"16384 0 0 0 0 0

View file

@ -1 +0,0 @@
"1024","0","0","0","0","0""2048","0","0","0","0","0""4096","0","0","0","0","0""8192","0","0","0","0","0""16384","0","0","0","0","0"
1 1024 0 0 0 0 0"2048 0 0 0 0 0"4096 0 0 0 0 0"8192 0 0 0 0 0"16384 0 0 0 0 0

View file

@ -1 +0,0 @@
"1024","0","0","0","0","0""2048","0","0","0","0","0""4096","0","0","0","0","0""8192","0","0","0","0","0""16384","0","0","0","0","0"
1 1024 0 0 0 0 0"2048 0 0 0 0 0"4096 0 0 0 0 0"8192 0 0 0 0 0"16384 0 0 0 0 0

View file

@ -1 +0,0 @@
"1024","0","0","0","0","0""2048","0","0","0","0","0""4096","0","0","0","0","0""8192","0","0","0","0","0""16384","0","0","0","0","0"
1 1024 0 0 0 0 0"2048 0 0 0 0 0"4096 0 0 0 0 0"8192 0 0 0 0 0"16384 0 0 0 0 0

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"0","ibdata1""4294967279","./undo_001""4294967278","./undo_002""1","./sys/sys_config.ibd""2","./employees/employees.ibd""3","./employees/departments.ibd""4","./employees/dept_manager.ibd""5","./employees/dept_emp.ibd""6","./employees/titles.ibd""7","./employees/salaries.ibd"
1 0 ibdata1"4294967279 ./undo_001"4294967278 ./undo_002"1 ./sys/sys_config.ibd"2 ./employees/employees.ibd"3 ./employees/departments.ibd"4 ./employees/dept_manager.ibd"5 ./employees/dept_emp.ibd"6 ./employees/titles.ibd"7 ./employees/salaries.ibd

View file

@ -1 +0,0 @@
"3","database_name","0""3","table_name","1""4","database_name","0""4","table_name","1""4","index_name","2""4","stat_name","3""103","Host","0""103","User","1""103","Db","2""104","User","0""105","Host","0""105","User","1""106","HOST","0""106","USER","1""106","DEFAULT_ROLE_HOST","2""106","DEFAULT_ROLE_USER","3""107","FROM_HOST","0""107","FROM_USER","1""107","TO_HOST","2""107","TO_USER","3""108","USER","0""108","HOST","1""108","PRIV","2""109","Host","0""109","User","1""109","Password_timestamp","2""110","name","0""111","name","0""147","name","0""146","help_topic_id","0""149","name","0""148","help_category_id","0""152","help_keyword_id","0""152","help_topic_id","1""117","Server_name","0""119","Grantor","0""118","Host","0""118","User","1""118","Db","2""118","Table_name","3""120","Host","0""120","User","1""120","Db","2""120","Table_name","3""120","Column_name","4""151","name","0""150","help_keyword_id","0""155","Name","0""154","Time_zone_id","0""156","Time_zone_id","0""156","Transition_time","1""157","Time_zone_id","0""157","Transition_type_id","1""127","Transition_time","0""129","Grantor","0""128","Host","0""128","User","1""128","Db","2""128","Routine_name","3""128","Routine_type","4""130","component_id","0""131","Channel_name","0""132","Channel_name","0""133","Channel_name","0""133","Id","1""134","source_uuid","0""134","interval_start","1""136","Channel_name","0""136","Managed_name","1""135","Channel_name","0""135","Host","1""135","Port","2""135","Network_namespace","3""135","Managed_name","4""137","Channel_name","0""137","Managed_name","1""139","event","0""138","name","0""138","event","1""140","name","0""141","cost_name","0""142","cost_name","0""142","engine_name","1""142","device_type","2""144","Grantor","0""143","Host","0""143","User","1""143","Proxied_host","2""143","Proxied_user","3""145","epoch","0""145","orig_server_id","1""145","orig_epoch","2""153","variable","0""158","emp_no","0""160","dept_name","0""159","dept_no","0""162","dept_no","0""161","emp_no","0""161","dept_no","1""164","dept_no","0""163","emp_no","0""163","dept_no","1""165","emp_no","0""165","title","1""165","from_date","2""166","emp_no","0""166","from_date","1"
1 3 database_name 0"3 table_name 1"4 database_name 0"4 table_name 1"4 index_name 2"4 stat_name 3"103 Host 0"103 User 1"103 Db 2"104 User 0"105 Host 0"105 User 1"106 HOST 0"106 USER 1"106 DEFAULT_ROLE_HOST 2"106 DEFAULT_ROLE_USER 3"107 FROM_HOST 0"107 FROM_USER 1"107 TO_HOST 2"107 TO_USER 3"108 USER 0"108 HOST 1"108 PRIV 2"109 Host 0"109 User 1"109 Password_timestamp 2"110 name 0"111 name 0"147 name 0"146 help_topic_id 0"149 name 0"148 help_category_id 0"152 help_keyword_id 0"152 help_topic_id 1"117 Server_name 0"119 Grantor 0"118 Host 0"118 User 1"118 Db 2"118 Table_name 3"120 Host 0"120 User 1"120 Db 2"120 Table_name 3"120 Column_name 4"151 name 0"150 help_keyword_id 0"155 Name 0"154 Time_zone_id 0"156 Time_zone_id 0"156 Transition_time 1"157 Time_zone_id 0"157 Transition_type_id 1"127 Transition_time 0"129 Grantor 0"128 Host 0"128 User 1"128 Db 2"128 Routine_name 3"128 Routine_type 4"130 component_id 0"131 Channel_name 0"132 Channel_name 0"133 Channel_name 0"133 Id 1"134 source_uuid 0"134 interval_start 1"136 Channel_name 0"136 Managed_name 1"135 Channel_name 0"135 Host 1"135 Port 2"135 Network_namespace 3"135 Managed_name 4"137 Channel_name 0"137 Managed_name 1"139 event 0"138 name 0"138 event 1"140 name 0"141 cost_name 0"142 cost_name 0"142 engine_name 1"142 device_type 2"144 Grantor 0"143 Host 0"143 User 1"143 Proxied_host 2"143 Proxied_user 3"145 epoch 0"145 orig_server_id 1"145 orig_epoch 2"153 variable 0"158 emp_no 0"160 dept_name 0"159 dept_no 0"162 dept_no 0"161 emp_no 0"161 dept_no 1"164 dept_no 0"163 emp_no 0"163 dept_no 1"165 emp_no 0"165 title 1"165 from_date 2"166 emp_no 0"166 from_date 1

View file

@ -1 +0,0 @@
"employees/dept_manager_ibfk_1","employees/dept_manager","employees/employees","1","33""employees/dept_manager_ibfk_2","employees/dept_manager","employees/departments","1","33""employees/dept_emp_ibfk_1","employees/dept_emp","employees/employees","1","33""employees/dept_emp_ibfk_2","employees/dept_emp","employees/departments","1","33""employees/titles_ibfk_1","employees/titles","employees/employees","1","33""employees/salaries_ibfk_1","employees/salaries","employees/employees","1","33"
1 employees/dept_manager_ibfk_1 employees/dept_manager employees/employees 1 33"employees/dept_manager_ibfk_2 employees/dept_manager employees/departments 1 33"employees/dept_emp_ibfk_1 employees/dept_emp employees/employees 1 33"employees/dept_emp_ibfk_2 employees/dept_emp employees/departments 1 33"employees/titles_ibfk_1 employees/titles employees/employees 1 33"employees/salaries_ibfk_1 employees/salaries employees/employees 1 33

View file

@ -1 +0,0 @@
"employees/dept_manager_ibfk_1","emp_no","emp_no","1""employees/dept_manager_ibfk_2","dept_no","dept_no","1""employees/dept_emp_ibfk_1","emp_no","emp_no","1""employees/dept_emp_ibfk_2","dept_no","dept_no","1""employees/titles_ibfk_1","emp_no","emp_no","1""employees/salaries_ibfk_1","emp_no","emp_no","1"
1 employees/dept_manager_ibfk_1 emp_no emp_no 1"employees/dept_manager_ibfk_2 dept_no dept_no 1"employees/dept_emp_ibfk_1 emp_no emp_no 1"employees/dept_emp_ibfk_2 dept_no dept_no 1"employees/titles_ibfk_1 emp_no emp_no 1"employees/salaries_ibfk_1 emp_no emp_no 1

View file

@ -1 +0,0 @@
"a""about""an""are""as""at""be""by""com""de""en""for""from""how""i""in""is""it""la""of""on""or""that""the""this""to""was""what""when""where""who""will""with""und""the""www"
1 a"about"an"are"as"at"be"by"com"de"en"for"from"how"i"in"is"it"la"of"on"or"that"the"this"to"was"what"when"where"who"will"with"und"the"www

View file

@ -1 +0,0 @@
"153","PRIMARY","1063","3","6","4","1","50""158","PRIMARY","1068","3","8","4","2","50""159","PRIMARY","1069","3","4","4","3","50""160","dept_name","1069","2","2","5","3","50""161","PRIMARY","1070","3","6","4","4","50""162","dept_no","1070","0","2","5","4","50""163","PRIMARY","1071","3","6","4","5","50""164","dept_no","1071","0","2","5","5","50""165","PRIMARY","1072","3","6","4","6","50""166","PRIMARY","1073","3","6","4","7","50"
1 153 PRIMARY 1063 3 6 4 1 50"158 PRIMARY 1068 3 8 4 2 50"159 PRIMARY 1069 3 4 4 3 50"160 dept_name 1069 2 2 5 3 50"161 PRIMARY 1070 3 6 4 4 50"162 dept_no 1070 0 2 5 4 50"163 PRIMARY 1071 3 6 4 5 50"164 dept_no 1071 0 2 5 5 50"165 PRIMARY 1072 3 6 4 6 50"166 PRIMARY 1073 3 6 4 7 50

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"307","4243767290","./#innodb_temp/temp_10.ibt","81920","ACTIVE","INTRINSIC""0","4243767281","./#innodb_temp/temp_1.ibt","81920","INACTIVE","NONE""0","4243767282","./#innodb_temp/temp_2.ibt","81920","INACTIVE","NONE""0","4243767283","./#innodb_temp/temp_3.ibt","81920","INACTIVE","NONE""0","4243767284","./#innodb_temp/temp_4.ibt","81920","INACTIVE","NONE""0","4243767285","./#innodb_temp/temp_5.ibt","81920","INACTIVE","NONE""0","4243767286","./#innodb_temp/temp_6.ibt","81920","INACTIVE","NONE""0","4243767287","./#innodb_temp/temp_7.ibt","81920","INACTIVE","NONE""0","4243767288","./#innodb_temp/temp_8.ibt","81920","INACTIVE","NONE""0","4243767289","./#innodb_temp/temp_9.ibt","81920","INACTIVE","NONE"
1 307 4243767290 ./#innodb_temp/temp_10.ibt 81920 ACTIVE INTRINSIC"0 4243767281 ./#innodb_temp/temp_1.ibt 81920 INACTIVE NONE"0 4243767282 ./#innodb_temp/temp_2.ibt 81920 INACTIVE NONE"0 4243767283 ./#innodb_temp/temp_3.ibt 81920 INACTIVE NONE"0 4243767284 ./#innodb_temp/temp_4.ibt 81920 INACTIVE NONE"0 4243767285 ./#innodb_temp/temp_5.ibt 81920 INACTIVE NONE"0 4243767286 ./#innodb_temp/temp_6.ibt 81920 INACTIVE NONE"0 4243767287 ./#innodb_temp/temp_7.ibt 81920 INACTIVE NONE"0 4243767288 ./#innodb_temp/temp_8.ibt 81920 INACTIVE NONE"0 4243767289 ./#innodb_temp/temp_9.ibt 81920 INACTIVE NONE

View file

@ -1 +0,0 @@
"1025","mysql/db","161","25","4294967294","Dynamic","0","General","0","0""1026","mysql/user","161","54","4294967294","Dynamic","0","General","0","0""1027","mysql/default_roles","161","7","4294967294","Dynamic","0","General","0","0""1028","mysql/role_edges","161","8","4294967294","Dynamic","0","General","0","0""1029","mysql/global_grants","161","7","4294967294","Dynamic","0","General","0","0""1030","mysql/password_history","161","7","4294967294","Dynamic","0","General","0","0""1031","mysql/func","161","7","4294967294","Dynamic","0","General","0","0""1032","mysql/plugin","161","5","4294967294","Dynamic","0","General","0","0""1059","mysql/help_topic","161","9","4294967294","Dynamic","0","General","0","0""1060","mysql/help_category","161","7","4294967294","Dynamic","0","General","0","0""1062","mysql/help_relation","161","5","4294967294","Dynamic","0","General","0","0""1036","mysql/servers","161","12","4294967294","Dynamic","0","General","0","0""1037","mysql/tables_priv","161","11","4294967294","Dynamic","0","General","0","0""1038","mysql/columns_priv","161","10","4294967294","Dynamic","0","General","0","0""1061","mysql/help_keyword","161","5","4294967294","Dynamic","0","General","0","0""1065","mysql/time_zone_name","161","5","4294967294","Dynamic","0","General","0","0""1064","mysql/time_zone","161","5","4294967294","Dynamic","0","General","0","0""1066","mysql/time_zone_transition","161","6","4294967294","Dynamic","0","General","0","0""1067","mysql/time_zone_transition_type","161","8","4294967294","Dynamic","0","General","0","0""1044","mysql/time_zone_leap_second","161","5","4294967294","Dynamic","0","General","0","0""1045","mysql/procs_priv","161","11","4294967294","Dynamic","0","General","0","0""1046","mysql/component","161","6","4294967294","Dynamic","0","General","0","0""1047","mysql/slave_relay_log_info","161","18","4294967294","Dynamic","0","General","0","0""1048","mysql/slave_master_info","161","36","4294967294","Dynamic","0","General","0","0""1049","mysql/slave_worker_info","161","16","4294967294","Dynamic","0","General","0","0""1050","mysql/gtid_executed","161","6","4294967294","Dynamic","0","General","0","0""1051","mysql/replication_asynchronous_connection_failover","161","9","4294967294","Dynamic","0","General","0","0""1052","mysql/replication_asynchronous_connection_failover_managed","161","7","4294967294","Dynamic","0","General","0","0""1053","mysql/replication_group_member_actions","161","9","4294967294","Dynamic","0","General","0","0""1054","mysql/replication_group_configuration_version","161","5","4294967294","Dynamic","0","General","0","0""1055","mysql/server_cost","161","7","4294967294","Dynamic","0","General","0","0""1056","mysql/engine_cost","161","9","4294967294","Dynamic","0","General","0","0""1057","mysql/proxies_priv","161","10","4294967294","Dynamic","0","General","0","0""1058","mysql/ndb_binlog_index","161","15","4294967294","Dynamic","0","General","0","0""1063","sys/sys_config","33","7","1","Dynamic","0","Single","0","0""1068","employees/employees","33","9","2","Dynamic","0","Single","0","0""1069","employees/departments","33","5","3","Dynamic","0","Single","0","0""1070","employees/dept_manager","33","7","4","Dynamic","0","Single","0","0""1071","employees/dept_emp","33","7","5","Dynamic","0","Single","0","0""1072","employees/titles","33","7","6","Dynamic","0","Single","0","0""1073","employees/salaries","33","7","7","Dynamic","0","Single","0","0"
1 1025 mysql/db 161 25 4294967294 Dynamic 0 General 0 0"1026 mysql/user 161 54 4294967294 Dynamic 0 General 0 0"1027 mysql/default_roles 161 7 4294967294 Dynamic 0 General 0 0"1028 mysql/role_edges 161 8 4294967294 Dynamic 0 General 0 0"1029 mysql/global_grants 161 7 4294967294 Dynamic 0 General 0 0"1030 mysql/password_history 161 7 4294967294 Dynamic 0 General 0 0"1031 mysql/func 161 7 4294967294 Dynamic 0 General 0 0"1032 mysql/plugin 161 5 4294967294 Dynamic 0 General 0 0"1059 mysql/help_topic 161 9 4294967294 Dynamic 0 General 0 0"1060 mysql/help_category 161 7 4294967294 Dynamic 0 General 0 0"1062 mysql/help_relation 161 5 4294967294 Dynamic 0 General 0 0"1036 mysql/servers 161 12 4294967294 Dynamic 0 General 0 0"1037 mysql/tables_priv 161 11 4294967294 Dynamic 0 General 0 0"1038 mysql/columns_priv 161 10 4294967294 Dynamic 0 General 0 0"1061 mysql/help_keyword 161 5 4294967294 Dynamic 0 General 0 0"1065 mysql/time_zone_name 161 5 4294967294 Dynamic 0 General 0 0"1064 mysql/time_zone 161 5 4294967294 Dynamic 0 General 0 0"1066 mysql/time_zone_transition 161 6 4294967294 Dynamic 0 General 0 0"1067 mysql/time_zone_transition_type 161 8 4294967294 Dynamic 0 General 0 0"1044 mysql/time_zone_leap_second 161 5 4294967294 Dynamic 0 General 0 0"1045 mysql/procs_priv 161 11 4294967294 Dynamic 0 General 0 0"1046 mysql/component 161 6 4294967294 Dynamic 0 General 0 0"1047 mysql/slave_relay_log_info 161 18 4294967294 Dynamic 0 General 0 0"1048 mysql/slave_master_info 161 36 4294967294 Dynamic 0 General 0 0"1049 mysql/slave_worker_info 161 16 4294967294 Dynamic 0 General 0 0"1050 mysql/gtid_executed 161 6 4294967294 Dynamic 0 General 0 0"1051 mysql/replication_asynchronous_connection_failover 161 9 4294967294 Dynamic 0 General 0 0"1052 mysql/replication_asynchronous_connection_failover_managed 161 7 4294967294 Dynamic 0 General 0 0"1053 mysql/replication_group_member_actions 161 9 4294967294 Dynamic 0 General 0 0"1054 mysql/replication_group_configuration_version 161 5 4294967294 Dynamic 0 General 0 0"1055 mysql/server_cost 161 7 4294967294 Dynamic 0 General 0 0"1056 mysql/engine_cost 161 9 4294967294 Dynamic 0 General 0 0"1057 mysql/proxies_priv 161 10 4294967294 Dynamic 0 General 0 0"1058 mysql/ndb_binlog_index 161 15 4294967294 Dynamic 0 General 0 0"1063 sys/sys_config 33 7 1 Dynamic 0 Single 0 0"1068 employees/employees 33 9 2 Dynamic 0 Single 0 0"1069 employees/departments 33 5 3 Dynamic 0 Single 0 0"1070 employees/dept_manager 33 7 4 Dynamic 0 Single 0 0"1071 employees/dept_emp 33 7 5 Dynamic 0 Single 0 0"1072 employees/titles 33 7 6 Dynamic 0 Single 0 0"1073 employees/salaries 33 7 7 Dynamic 0 Single 0 0

View file

@ -1 +0,0 @@
"4294967294","mysql","18432","Any","16384","0","General","4096","31457280","31461376","0","8.0.32","1","N","normal""4294967293","innodb_temporary","4096","Compact or Redundant","16384","0","System","4096","12582912","12582912","0","8.0.32","1","N","normal""4294967279","innodb_undo_001","0","Undo","16384","0","Undo","4096","16777216","16777216","0","8.0.32","1","N","active""4294967278","innodb_undo_002","0","Undo","16384","0","Undo","4096","16777216","16777216","0","8.0.32","1","N","active""1","sys/sys_config","16417","Dynamic","16384","0","Single","4096","114688","114688","0","8.0.32","1","N","normal""2","employees/employees","16417","Dynamic","16384","0","Single","4096","23068672","23072768","0","8.0.32","1","N","normal""3","employees/departments","16417","Dynamic","16384","0","Single","4096","131072","131072","0","8.0.32","1","N","normal""4","employees/dept_manager","16417","Dynamic","16384","0","Single","4096","131072","131072","0","8.0.32","1","N","normal""5","employees/dept_emp","16417","Dynamic","16384","0","Single","4096","26214400","26218496","0","8.0.32","1","N","normal""6","employees/titles","16417","Dynamic","16384","0","Single","4096","28311552","28315648","0","8.0.32","1","N","normal""7","employees/salaries","16417","Dynamic","16384","0","Single","4096","109051904","109056000","0","8.0.32","1","N","normal"
1 4294967294 mysql 18432 Any 16384 0 General 4096 31457280 31461376 0 8.0.32 1 N normal"4294967293 innodb_temporary 4096 Compact or Redundant 16384 0 System 4096 12582912 12582912 0 8.0.32 1 N normal"4294967279 innodb_undo_001 0 Undo 16384 0 Undo 4096 16777216 16777216 0 8.0.32 1 N active"4294967278 innodb_undo_002 0 Undo 16384 0 Undo 4096 16777216 16777216 0 8.0.32 1 N active"1 sys/sys_config 16417 Dynamic 16384 0 Single 4096 114688 114688 0 8.0.32 1 N normal"2 employees/employees 16417 Dynamic 16384 0 Single 4096 23068672 23072768 0 8.0.32 1 N normal"3 employees/departments 16417 Dynamic 16384 0 Single 4096 131072 131072 0 8.0.32 1 N normal"4 employees/dept_manager 16417 Dynamic 16384 0 Single 4096 131072 131072 0 8.0.32 1 N normal"5 employees/dept_emp 16417 Dynamic 16384 0 Single 4096 26214400 26218496 0 8.0.32 1 N normal"6 employees/titles 16417 Dynamic 16384 0 Single 4096 28311552 28315648 0 8.0.32 1 N normal"7 employees/salaries 16417 Dynamic 16384 0 Single 4096 109051904 109056000 0 8.0.32 1 N normal

View file

@ -1 +0,0 @@
"0","innodb_system","ibdata1","18432","System""4294967279","innodb_undo_001","./undo_001","0","Single""4294967278","innodb_undo_002","./undo_002","0","Single""1","sys/sys_config","./sys/sys_config.ibd","16417","Single""2","employees/employees","./employees/employees.ibd","16417","Single""3","employees/departments","./employees/departments.ibd","16417","Single""4","employees/dept_manager","./employees/dept_manager.ibd","16417","Single""5","employees/dept_emp","./employees/dept_emp.ibd","16417","Single""6","employees/titles","./employees/titles.ibd","16417","Single""7","employees/salaries","./employees/salaries.ibd","16417","Single"
1 0 innodb_system ibdata1 18432 System"4294967279 innodb_undo_001 ./undo_001 0 Single"4294967278 innodb_undo_002 ./undo_002 0 Single"1 sys/sys_config ./sys/sys_config.ibd 16417 Single"2 employees/employees ./employees/employees.ibd 16417 Single"3 employees/departments ./employees/departments.ibd 16417 Single"4 employees/dept_manager ./employees/dept_manager.ibd 16417 Single"5 employees/dept_emp ./employees/dept_emp.ibd 16417 Single"6 employees/titles ./employees/titles.ibd 16417 Single"7 employees/salaries ./employees/salaries.ibd 16417 Single

View file

@ -1 +0,0 @@
"1025","mysql/db","Initialized","2","1","1","0","0","2""1026","mysql/user","Initialized","5","1","0","0","0","2""1027","mysql/default_roles","Initialized","0","1","0","0","0","5""1028","mysql/role_edges","Initialized","0","1","0","0","0","6""1029","mysql/global_grants","Initialized","112","4","0","0","0","2""1030","mysql/password_history","Initialized","0","1","0","0","0","2""1031","mysql/func","Initialized","0","1","0","0","0","1""1032","mysql/plugin","Initialized","0","1","0","0","0","1""1059","mysql/help_topic","Initialized","692","97","6","0","0","1""1060","mysql/help_category","Initialized","53","1","1","0","0","1""1062","mysql/help_relation","Initialized","1746","6","0","0","0","1""1036","mysql/servers","Initialized","0","1","0","0","0","2""1037","mysql/tables_priv","Initialized","2","1","1","0","0","2""1038","mysql/columns_priv","Initialized","0","1","0","0","0","2""1061","mysql/help_keyword","Initialized","1066","8","8","0","0","1""1065","mysql/time_zone_name","Initialized","1527","15","0","0","0","1""1064","mysql/time_zone","Initialized","2074","5","0","0","1790","1""1066","mysql/time_zone_transition","Initialized","121720","289","0","0","0","1""1067","mysql/time_zone_transition_type","Initialized","9871","29","0","0","0","1""1044","mysql/time_zone_leap_second","Initialized","0","1","0","0","0","1""1045","mysql/procs_priv","Initialized","0","1","1","0","0","2""1046","mysql/component","Initialized","0","1","0","0","1","2""1047","mysql/slave_relay_log_info","Initialized","0","1","0","0","0","2""1048","mysql/slave_master_info","Initialized","0","1","0","0","0","2""1049","mysql/slave_worker_info","Initialized","0","1","0","0","0","2""1050","mysql/gtid_executed","Initialized","0","1","0","0","0","3""1051","mysql/replication_asynchronous_connection_failover","Initialized","0","1","1","0","0","1""1052","mysql/replication_asynchronous_connection_failover_managed","Initialized","0","1","0","0","0","1""1053","mysql/replication_group_member_actions","Initialized","2","1","1","0","0","1""1054","mysql/replication_group_configuration_version","Initialized","1","1","0","0","0","1""1055","mysql/server_cost","Initialized","6","1","0","0","0","2""1056","mysql/engine_cost","Initialized","2","1","0","0","0","2""1057","mysql/proxies_priv","Initialized","1","1","1","0","0","2""1058","mysql/ndb_binlog_index","Initialized","0","1","0","0","0","1""1063","sys/sys_config","Uninitialized","0","0","0","0","0","1""1068","employees/employees","Initialized","299423","929","0","0","0","2""1069","employees/departments","Initialized","9","1","1","0","0","2""1070","employees/dept_manager","Initialized","24","1","1","0","0","2""1071","employees/dept_emp","Initialized","331143","737","353","0","0","3""1072","employees/titles","Initialized","442189","1252","0","0","0","2""1073","employees/salaries","Initialized","2838426","6120","0","0","0","2"
1 1025 mysql/db Initialized 2 1 1 0 0 2"1026 mysql/user Initialized 5 1 0 0 0 2"1027 mysql/default_roles Initialized 0 1 0 0 0 5"1028 mysql/role_edges Initialized 0 1 0 0 0 6"1029 mysql/global_grants Initialized 112 4 0 0 0 2"1030 mysql/password_history Initialized 0 1 0 0 0 2"1031 mysql/func Initialized 0 1 0 0 0 1"1032 mysql/plugin Initialized 0 1 0 0 0 1"1059 mysql/help_topic Initialized 692 97 6 0 0 1"1060 mysql/help_category Initialized 53 1 1 0 0 1"1062 mysql/help_relation Initialized 1746 6 0 0 0 1"1036 mysql/servers Initialized 0 1 0 0 0 2"1037 mysql/tables_priv Initialized 2 1 1 0 0 2"1038 mysql/columns_priv Initialized 0 1 0 0 0 2"1061 mysql/help_keyword Initialized 1066 8 8 0 0 1"1065 mysql/time_zone_name Initialized 1527 15 0 0 0 1"1064 mysql/time_zone Initialized 2074 5 0 0 1790 1"1066 mysql/time_zone_transition Initialized 121720 289 0 0 0 1"1067 mysql/time_zone_transition_type Initialized 9871 29 0 0 0 1"1044 mysql/time_zone_leap_second Initialized 0 1 0 0 0 1"1045 mysql/procs_priv Initialized 0 1 1 0 0 2"1046 mysql/component Initialized 0 1 0 0 1 2"1047 mysql/slave_relay_log_info Initialized 0 1 0 0 0 2"1048 mysql/slave_master_info Initialized 0 1 0 0 0 2"1049 mysql/slave_worker_info Initialized 0 1 0 0 0 2"1050 mysql/gtid_executed Initialized 0 1 0 0 0 3"1051 mysql/replication_asynchronous_connection_failover Initialized 0 1 1 0 0 1"1052 mysql/replication_asynchronous_connection_failover_managed Initialized 0 1 0 0 0 1"1053 mysql/replication_group_member_actions Initialized 2 1 1 0 0 1"1054 mysql/replication_group_configuration_version Initialized 1 1 0 0 0 1"1055 mysql/server_cost Initialized 6 1 0 0 0 2"1056 mysql/engine_cost Initialized 2 1 0 0 0 2"1057 mysql/proxies_priv Initialized 1 1 1 0 0 2"1058 mysql/ndb_binlog_index Initialized 0 1 0 0 0 1"1063 sys/sys_config Uninitialized 0 0 0 0 0 1"1068 employees/employees Initialized 299423 929 0 0 0 2"1069 employees/departments Initialized 9 1 1 0 0 2"1070 employees/dept_manager Initialized 24 1 1 0 0 2"1071 employees/dept_emp Initialized 331143 737 353 0 0 3"1072 employees/titles Initialized 442189 1252 0 0 0 2"1073 employees/salaries Initialized 2838426 6120 0 0 0 2

View file

@ -1 +0,0 @@
"1055","65540","0""1056","65542","2"
1 1055 65540 0"1056 65542 2

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"321","root","172.17.0.1:40830","NULL","Query","0","executing","select * from information_schema.PROCESSLIST""5","event_scheduler","localhost","NULL","Daemon","70","Waiting on empty queue","NULL"
1 321 root 172.17.0.1:40830 NULL Query 0 executing select * from information_schema.PROCESSLIST"5 event_scheduler localhost NULL Daemon 70 Waiting on empty queue NULL

View file

@ -1 +0,0 @@
"def","employees","dept_manager_ibfk_1","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","dept_manager","employees""def","employees","dept_manager_ibfk_2","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","dept_manager","departments""def","employees","dept_emp_ibfk_1","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","dept_emp","employees""def","employees","dept_emp_ibfk_2","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","dept_emp","departments""def","employees","titles_ibfk_1","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","titles","employees""def","employees","salaries_ibfk_1","def","employees","PRIMARY","NONE","NO ACTION","CASCADE","salaries","employees"
1 def employees dept_manager_ibfk_1 def employees PRIMARY NONE NO ACTION CASCADE dept_manager employees"def employees dept_manager_ibfk_2 def employees PRIMARY NONE NO ACTION CASCADE dept_manager departments"def employees dept_emp_ibfk_1 def employees PRIMARY NONE NO ACTION CASCADE dept_emp employees"def employees dept_emp_ibfk_2 def employees PRIMARY NONE NO ACTION CASCADE dept_emp departments"def employees titles_ibfk_1 def employees PRIMARY NONE NO ACTION CASCADE titles employees"def employees salaries_ibfk_1 def employees PRIMARY NONE NO ACTION CASCADE salaries employees

View file

@ -1 +0,0 @@
"USR_default","USER","1","0-1","0""SYS_default","SYSTEM","1","0-1","0""SYS_internal","SYSTEM","1","0-1","0"
1 USR_default USER 1 0-1 0"SYS_default SYSTEM 1 0-1 0"SYS_internal SYSTEM 1 0-1 0

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"def","mysql","utf8mb4","utf8mb4_general_ci","NULL","NO""def","information_schema","utf8mb3","utf8mb3_general_ci","NULL","NO""def","performance_schema","utf8mb4","utf8mb4_0900_ai_ci","NULL","NO""def","sys","utf8mb4","utf8mb4_0900_ai_ci","NULL","NO""def","data","utf8mb4","utf8mb4_general_ci","NULL","NO""def","employees","utf8mb4","utf8mb4_general_ci","NULL","NO"
1 def mysql utf8mb4 utf8mb4_general_ci NULL NO"def information_schema utf8mb3 utf8mb3_general_ci NULL NO"def performance_schema utf8mb4 utf8mb4_0900_ai_ci NULL NO"def sys utf8mb4 utf8mb4_0900_ai_ci NULL NO"def data utf8mb4 utf8mb4_general_ci NULL NO"def employees utf8mb4 utf8mb4_general_ci NULL NO

View file

@ -1 +0,0 @@
"def","mysql","""def","information_schema","""def","performance_schema","""def","sys","""def","data","""def","employees",""
1 def mysql "def information_schema "def performance_schema "def sys "def data "def employees

View file

@ -1 +0,0 @@
"'mysql.sys'@'localhost'","def","sys","TRIGGER","NO""'mysql.session'@'localhost'","def","performance_schema","SELECT","NO"
1 'mysql.sys'@'localhost' def sys TRIGGER NO"'mysql.session'@'localhost' def performance_schema SELECT NO

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"British link (Sears 1922 truncated)","LINEAR","0.20116756","""foot","LINEAR","0.3048","""British yard (Benoit 1895 B)","LINEAR","0.9143992042898124","""British yard (Sears 1922 truncated)","LINEAR","0.914398","""British yard (Benoit 1895 A)","LINEAR","0.9143992","""British chain (Sears 1922)","LINEAR","20.116765121552632","""Clarke's link","LINEAR","0.201166195164","""Clarke's yard","LINEAR","0.9143917962","""British chain (Benoit 1895 A)","LINEAR","20.1167824","""kilometre","LINEAR","1000","""US survey foot","LINEAR","0.30480060960121924","""British yard (Sears 1922)","LINEAR","0.9143984146160288","""centimetre","LINEAR","0.01","""millimetre","LINEAR","0.001","""British foot (Sears 1922)","LINEAR","0.3047994715386762","""British link (Sears 1922)","LINEAR","0.2011676512155263","""fathom","LINEAR","1.8288","""US survey chain","LINEAR","20.11684023368047","""US survey link","LINEAR","0.2011684023368047","""metre","LINEAR","1","""German legal metre","LINEAR","1.0000135965","""nautical mile","LINEAR","1852","""British link (Benoit 1895 A)","LINEAR","0.201167824","""British foot (Benoit 1895 B)","LINEAR","0.30479973476327077","""British chain (Benoit 1895 B)","LINEAR","20.116782494375872","""Statute mile","LINEAR","1609.344","""British link (Benoit 1895 B)","LINEAR","0.2011678249437587","""British foot (1865)","LINEAR","0.30480083333333335","""Indian foot (1962)","LINEAR","0.3047996","""Indian foot","LINEAR","0.30479951024814694","""Indian foot (1937)","LINEAR","0.30479841","""British foot (Benoit 1895 A)","LINEAR","0.3047997333333333","""Indian foot (1975)","LINEAR","0.3047995","""Indian yard (1962)","LINEAR","0.9143988","""Indian yard (1975)","LINEAR","0.9143985","""Indian yard","LINEAR","0.9143985307444408","""link","LINEAR","0.201168","""British foot (1936)","LINEAR","0.3048007491","""Clarke's chain","LINEAR","20.1166195164","""yard","LINEAR","0.9144","""US survey mile","LINEAR","1609.3472186944375","""Gold Coast foot","LINEAR","0.3047997101815088","""chain","LINEAR","20.1168","""Indian yard (1937)","LINEAR","0.91439523","""British foot (Sears 1922 truncated)","LINEAR","0.30479933333333337","""Clarke's foot","LINEAR","0.3047972654","""British chain (Sears 1922 truncated)","LINEAR","20.116756",""
1 British link (Sears 1922 truncated) LINEAR 0.20116756 "foot LINEAR 0.3048 "British yard (Benoit 1895 B) LINEAR 0.9143992042898124 "British yard (Sears 1922 truncated) LINEAR 0.914398 "British yard (Benoit 1895 A) LINEAR 0.9143992 "British chain (Sears 1922) LINEAR 20.116765121552632 "Clarke's link LINEAR 0.201166195164 "Clarke's yard LINEAR 0.9143917962 "British chain (Benoit 1895 A) LINEAR 20.1167824 "kilometre LINEAR 1000 "US survey foot LINEAR 0.30480060960121924 "British yard (Sears 1922) LINEAR 0.9143984146160288 "centimetre LINEAR 0.01 "millimetre LINEAR 0.001 "British foot (Sears 1922) LINEAR 0.3047994715386762 "British link (Sears 1922) LINEAR 0.2011676512155263 "fathom LINEAR 1.8288 "US survey chain LINEAR 20.11684023368047 "US survey link LINEAR 0.2011684023368047 "metre LINEAR 1 "German legal metre LINEAR 1.0000135965 "nautical mile LINEAR 1852 "British link (Benoit 1895 A) LINEAR 0.201167824 "British foot (Benoit 1895 B) LINEAR 0.30479973476327077 "British chain (Benoit 1895 B) LINEAR 20.116782494375872 "Statute mile LINEAR 1609.344 "British link (Benoit 1895 B) LINEAR 0.2011678249437587 "British foot (1865) LINEAR 0.30480083333333335 "Indian foot (1962) LINEAR 0.3047996 "Indian foot LINEAR 0.30479951024814694 "Indian foot (1937) LINEAR 0.30479841 "British foot (Benoit 1895 A) LINEAR 0.3047997333333333 "Indian foot (1975) LINEAR 0.3047995 "Indian yard (1962) LINEAR 0.9143988 "Indian yard (1975) LINEAR 0.9143985 "Indian yard LINEAR 0.9143985307444408 "link LINEAR 0.201168 "British foot (1936) LINEAR 0.3048007491 "Clarke's chain LINEAR 20.1166195164 "yard LINEAR 0.9144 "US survey mile LINEAR 1609.3472186944375 "Gold Coast foot LINEAR 0.3047997101815088 "chain LINEAR 20.1168 "Indian yard (1937) LINEAR 0.91439523 "British foot (Sears 1922 truncated) LINEAR 0.30479933333333337 "Clarke's foot LINEAR 0.3047972654 "British chain (Sears 1922 truncated) LINEAR 20.116756

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"mysql","NULL""innodb_system","NULL""innodb_temporary","NULL""innodb_undo_001","NULL""innodb_undo_002","NULL""sys/sys_config","NULL""employees/employees","NULL""employees/departments","NULL""employees/dept_manager","NULL""employees/dept_emp","NULL""employees/titles","NULL""employees/salaries","NULL"
1 mysql NULL"innodb_system NULL"innodb_temporary NULL"innodb_undo_001 NULL"innodb_undo_002 NULL"sys/sys_config NULL"employees/employees NULL"employees/departments NULL"employees/dept_manager NULL"employees/dept_emp NULL"employees/titles NULL"employees/salaries NULL

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"'mysql.sys'@'localhost'","def","sys","sys_config","SELECT","NO""'mysql.session'@'localhost'","def","mysql","user","SELECT","NO"
1 'mysql.sys'@'localhost' def sys sys_config SELECT NO"'mysql.session'@'localhost' def mysql user SELECT NO

View file

@ -1 +0,0 @@
"def","sys","sys_config_insert_set_user","INSERT","def","sys","sys_config","1","NULL","BEGIN\n IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN\n SET NEW.set_by = USER();\n END IF;\nEND","ROW","BEFORE","NULL","NULL","OLD","NEW","2023-03-22 14:23:09.58","ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","mysql.sys@localhost","utf8mb4","utf8mb4_0900_ai_ci","utf8mb4_0900_ai_ci""def","sys","sys_config_update_set_user","UPDATE","def","sys","sys_config","1","NULL","BEGIN\n IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN\n SET NEW.set_by = USER();\n END IF;\nEND","ROW","BEFORE","NULL","NULL","OLD","NEW","2023-03-22 14:23:09.58","ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","mysql.sys@localhost","utf8mb4","utf8mb4_0900_ai_ci","utf8mb4_0900_ai_ci"
1 def sys sys_config_insert_set_user INSERT def sys sys_config 1 NULL BEGIN\n IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN\n SET NEW.set_by = USER();\n END IF;\nEND ROW BEFORE NULL NULL OLD NEW 2023-03-22 14:23:09.58 ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION mysql.sys@localhost utf8mb4 utf8mb4_0900_ai_ci utf8mb4_0900_ai_ci"def sys sys_config_update_set_user UPDATE def sys sys_config 1 NULL BEGIN\n IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN\n SET NEW.set_by = USER();\n END IF;\nEND ROW BEFORE NULL NULL OLD NEW 2023-03-22 14:23:09.58 ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION mysql.sys@localhost utf8mb4 utf8mb4_0900_ai_ci utf8mb4_0900_ai_ci

View file

@ -1 +0,0 @@
"root","%","NULL""mysql.infoschema","localhost","NULL""mysql.session","localhost","NULL""mysql.sys","localhost","NULL""root","localhost","NULL"
1 root % NULL"mysql.infoschema localhost NULL"mysql.session localhost NULL"mysql.sys localhost NULL"root localhost NULL

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"def","sys","x$ps_schema_table_statistics_io","def","sys","extract_schema_from_file_name""def","sys","x$ps_schema_table_statistics_io","def","sys","extract_table_from_file_name""def","sys","io_global_by_file_by_latency","def","sys","format_path""def","sys","io_global_by_file_by_bytes","def","sys","format_path""def","sys","latest_file_io","def","sys","format_path""def","sys","processlist","def","sys","format_statement""def","sys","statements_with_temp_tables","def","sys","format_statement""def","sys","statements_with_sorting","def","sys","format_statement""def","sys","statements_with_runtimes_in_95th_percentile","def","sys","format_statement""def","sys","statements_with_full_table_scans","def","sys","format_statement""def","sys","statements_with_errors_or_warnings","def","sys","format_statement""def","sys","statement_analysis","def","sys","format_statement""def","sys","schema_table_lock_waits","def","sys","format_statement""def","sys","innodb_lock_waits","def","sys","format_statement""def","sys","x$schema_table_lock_waits","def","sys","ps_thread_account""def","sys","schema_table_lock_waits","def","sys","ps_thread_account""def","sys","x$innodb_lock_waits","def","sys","quote_identifier""def","sys","innodb_lock_waits","def","sys","quote_identifier"
1 def sys x$ps_schema_table_statistics_io def sys extract_schema_from_file_name"def sys x$ps_schema_table_statistics_io def sys extract_table_from_file_name"def sys io_global_by_file_by_latency def sys format_path"def sys io_global_by_file_by_bytes def sys format_path"def sys latest_file_io def sys format_path"def sys processlist def sys format_statement"def sys statements_with_temp_tables def sys format_statement"def sys statements_with_sorting def sys format_statement"def sys statements_with_runtimes_in_95th_percentile def sys format_statement"def sys statements_with_full_table_scans def sys format_statement"def sys statements_with_errors_or_warnings def sys format_statement"def sys statement_analysis def sys format_statement"def sys schema_table_lock_waits def sys format_statement"def sys innodb_lock_waits def sys format_statement"def sys x$schema_table_lock_waits def sys ps_thread_account"def sys schema_table_lock_waits def sys ps_thread_account"def sys x$innodb_lock_waits def sys quote_identifier"def sys innodb_lock_waits def sys quote_identifier

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"172.17.0.1","3972","37.76 s","9.51 ms","207","20167","1.26 s","1","426","1","1.55 MiB","12.61 GiB""localhost","0"," 0 ps"," 0 ps","0","0"," 0 ps","1","1","1","16.27 KiB","16.27 KiB"
1 172.17.0.1 3972 37.76 s 9.51 ms 207 20167 1.26 s 1 426 1 1.55 MiB 12.61 GiB"localhost 0 0 ps 0 ps 0 0 0 ps 1 1 1 16.27 KiB 16.27 KiB

View file

@ -1 +0,0 @@
"background","163312","15.59 s""172.17.0.1","20167","1.26 s""localhost","0"," 0 ps"
1 background 163312 15.59 s"172.17.0.1 20167 1.26 s"localhost 0 0 ps

View file

@ -1 +0,0 @@
"172.17.0.1","wait/io/file/innodb/innodb_data_file","1883","515.94 ms","28.44 ms""172.17.0.1","wait/io/file/sql/io_cache","9766","453.03 ms","224.11 ms""172.17.0.1","wait/io/file/sql/binlog","8459","270.09 ms","2.33 ms""172.17.0.1","wait/io/file/innodb/innodb_temp_file","25","15.97 ms","1.63 ms""172.17.0.1","wait/io/file/csv/data","6","94.51 us","42.52 us""172.17.0.1","wait/io/file/sql/binlog_index","18","72.84 us","30.76 us""172.17.0.1","wait/io/file/csv/metadata","8","66.07 us","19.61 us""172.17.0.1","wait/io/file/sql/misc","2","16.26 us","12.55 us""background","wait/io/file/innodb/innodb_log_file","140815","13.22 s","286.40 ms""background","wait/io/file/innodb/innodb_data_file","16418","1.32 s","14.11 ms""background","wait/io/file/innodb/innodb_dblwr_file","5582","1.03 s","7.84 ms""background","wait/io/file/innodb/innodb_temp_file","52","7.51 ms","945.83 us""background","wait/io/file/sql/binlog","386","2.36 ms","778.97 us""background","wait/io/file/sql/casetest","15","1.71 ms","1.59 ms""background","wait/io/file/sql/binlog_index","23","1.00 ms","906.76 us""background","wait/io/file/sql/ERRMSG","5","206.55 us","165.02 us""background","wait/io/file/sql/pid","3","88.11 us","74.63 us""background","wait/io/file/mysys/charset","3","29.33 us","18.16 us""background","wait/io/file/mysys/cnf","5","27.40 us","17.76 us""background","wait/io/file/sql/misc","5","23.18 us","6.53 us"
1 172.17.0.1 wait/io/file/innodb/innodb_data_file 1883 515.94 ms 28.44 ms"172.17.0.1 wait/io/file/sql/io_cache 9766 453.03 ms 224.11 ms"172.17.0.1 wait/io/file/sql/binlog 8459 270.09 ms 2.33 ms"172.17.0.1 wait/io/file/innodb/innodb_temp_file 25 15.97 ms 1.63 ms"172.17.0.1 wait/io/file/csv/data 6 94.51 us 42.52 us"172.17.0.1 wait/io/file/sql/binlog_index 18 72.84 us 30.76 us"172.17.0.1 wait/io/file/csv/metadata 8 66.07 us 19.61 us"172.17.0.1 wait/io/file/sql/misc 2 16.26 us 12.55 us"background wait/io/file/innodb/innodb_log_file 140815 13.22 s 286.40 ms"background wait/io/file/innodb/innodb_data_file 16418 1.32 s 14.11 ms"background wait/io/file/innodb/innodb_dblwr_file 5582 1.03 s 7.84 ms"background wait/io/file/innodb/innodb_temp_file 52 7.51 ms 945.83 us"background wait/io/file/sql/binlog 386 2.36 ms 778.97 us"background wait/io/file/sql/casetest 15 1.71 ms 1.59 ms"background wait/io/file/sql/binlog_index 23 1.00 ms 906.76 us"background wait/io/file/sql/ERRMSG 5 206.55 us 165.02 us"background wait/io/file/sql/pid 3 88.11 us 74.63 us"background wait/io/file/mysys/charset 3 29.33 us 18.16 us"background wait/io/file/mysys/cnf 5 27.40 us 17.76 us"background wait/io/file/sql/misc 5 23.18 us 6.53 us

View file

@ -1 +0,0 @@
"background","stage/innodb/buffer pool load","1","1.51 ms","1.51 ms"
1 background stage/innodb/buffer pool load 1 1.51 ms 1.51 ms

View file

@ -1 +0,0 @@
"172.17.0.1","3984","37.77 s","558.97 ms","3.41 ms"," 0 ps","40170","101865","3919017","211""background","0"," 0 ps"," 0 ps"," 0 ps"," 0 ps","0","0","0","0""localhost","0"," 0 ps"," 0 ps"," 0 ps"," 0 ps","0","0","0","0"
1 172.17.0.1 3984 37.77 s 558.97 ms 3.41 ms 0 ps 40170 101865 3919017 211"background 0 0 ps 0 ps 0 ps 0 ps 0 0 0 0"localhost 0 0 ps 0 ps 0 ps 0 ps 0 0 0 0

View file

@ -1 +0,0 @@
"172.17.0.1","insert","168","36.21 s","558.97 ms","793.00 us"," 0 ps","0","0","3919015","0""172.17.0.1","select","874","1.34 s","82.13 ms","1.69 ms"," 0 ps","34888","95284","0","198""172.17.0.1","show_table_status","10","115.84 ms","56.70 ms","709.00 us"," 0 ps","516","1552","0","0""172.17.0.1","create_table","6","63.83 ms","13.46 ms","112.00 us"," 0 ps","0","0","0","0""172.17.0.1","show_variables","4","8.16 ms","2.55 ms","15.00 us"," 0 ps","2570","2570","0","4""172.17.0.1","create_view","2","7.07 ms","5.21 ms","17.00 us"," 0 ps","0","0","0","0""172.17.0.1","show_status","4","4.47 ms","1.66 ms","11.00 us"," 0 ps","1974","1974","0","4""172.17.0.1","create_db","2","3.96 ms","2.18 ms","5.00 us"," 0 ps","0","0","2","0""172.17.0.1","freturn","2406","3.67 ms","24.00 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","flush","1","3.65 ms","3.65 ms"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","show_databases","4","3.05 ms","1.49 ms","14.00 us"," 0 ps","24","100","0","4""172.17.0.1","drop_table","1","2.72 ms","2.72 ms","30.00 us"," 0 ps","0","0","0","0""172.17.0.1","show_tables","2","2.69 ms","1.49 ms","7.00 us"," 0 ps","180","367","0","0""172.17.0.1","Init DB","49","2.39 ms","87.60 us","1.00 us"," 0 ps","0","0","0","0""172.17.0.1","Quit","430","1.82 ms","21.60 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","show_engine_status","12","1.33 ms","123.70 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","drop_db","1","860.20 us","860.20 us","1.00 us"," 0 ps","0","0","0","0""172.17.0.1","show_slave_status","4","305.30 us","97.70 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","show_storage_engines","2","273.80 us","141.60 us","1.00 us"," 0 ps","22","22","0","2""172.17.0.1","set_option","1","61.00 us","61.00 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","Ping","2","50.40 us","25.60 us"," 0 ps"," 0 ps","0","0","0","0""172.17.0.1","Statistics","2","48.60 us","25.10 us"," 0 ps"," 0 ps","0","0","0","0"
1 172.17.0.1 insert 168 36.21 s 558.97 ms 793.00 us 0 ps 0 0 3919015 0"172.17.0.1 select 874 1.34 s 82.13 ms 1.69 ms 0 ps 34888 95284 0 198"172.17.0.1 show_table_status 10 115.84 ms 56.70 ms 709.00 us 0 ps 516 1552 0 0"172.17.0.1 create_table 6 63.83 ms 13.46 ms 112.00 us 0 ps 0 0 0 0"172.17.0.1 show_variables 4 8.16 ms 2.55 ms 15.00 us 0 ps 2570 2570 0 4"172.17.0.1 create_view 2 7.07 ms 5.21 ms 17.00 us 0 ps 0 0 0 0"172.17.0.1 show_status 4 4.47 ms 1.66 ms 11.00 us 0 ps 1974 1974 0 4"172.17.0.1 create_db 2 3.96 ms 2.18 ms 5.00 us 0 ps 0 0 2 0"172.17.0.1 freturn 2406 3.67 ms 24.00 us 0 ps 0 ps 0 0 0 0"172.17.0.1 flush 1 3.65 ms 3.65 ms 0 ps 0 ps 0 0 0 0"172.17.0.1 show_databases 4 3.05 ms 1.49 ms 14.00 us 0 ps 24 100 0 4"172.17.0.1 drop_table 1 2.72 ms 2.72 ms 30.00 us 0 ps 0 0 0 0"172.17.0.1 show_tables 2 2.69 ms 1.49 ms 7.00 us 0 ps 180 367 0 0"172.17.0.1 Init DB 49 2.39 ms 87.60 us 1.00 us 0 ps 0 0 0 0"172.17.0.1 Quit 430 1.82 ms 21.60 us 0 ps 0 ps 0 0 0 0"172.17.0.1 show_engine_status 12 1.33 ms 123.70 us 0 ps 0 ps 0 0 0 0"172.17.0.1 drop_db 1 860.20 us 860.20 us 1.00 us 0 ps 0 0 0 0"172.17.0.1 show_slave_status 4 305.30 us 97.70 us 0 ps 0 ps 0 0 0 0"172.17.0.1 show_storage_engines 2 273.80 us 141.60 us 1.00 us 0 ps 22 22 0 2"172.17.0.1 set_option 1 61.00 us 61.00 us 0 ps 0 ps 0 0 0 0"172.17.0.1 Ping 2 50.40 us 25.60 us 0 ps 0 ps 0 0 0 0"172.17.0.1 Statistics 2 48.60 us 25.10 us 0 ps 0 ps 0 0 0 0

View file

@ -1 +0,0 @@
"employees","87.59 MiB","80.02 MiB","5606","5592","1942","1284363""mysql","9.03 MiB","6.77 MiB","578","122","272","993"
1 employees 87.59 MiB 80.02 MiB 5606 5592 1942 1284363"mysql 9.03 MiB 6.77 MiB 578 122 272 993

View file

@ -1 +0,0 @@
"employees","salaries","80.45 MiB","73.51 MiB","5149","5140","1761","2411850""employees","employees","6.14 MiB","5.63 MiB","393","392","215","133671""mysql","st_spatial_reference_systems","5.36 MiB","4.74 MiB","343","0","199","3033""mysql","columns","1.08 MiB","873.31 KiB","69","67","0","4112""employees","titles","992.00 KiB","898.97 KiB","62","59","0","23186""mysql","tables","720.00 KiB","515.85 KiB","45","39","2","377""mysql","routines","288.00 KiB","136.51 KiB","18","0","9","50""mysql","help_topic","208.00 KiB","144.86 KiB","13","0","12","292""mysql","help_keyword","208.00 KiB","130.23 KiB","13","0","13","835""mysql","index_column_usage","96.00 KiB","51.63 KiB","6","4","1","1244""mysql","help_relation","96.00 KiB","52.16 KiB","6","0","6","2056""mysql","indexes","80.00 KiB","40.79 KiB","5","3","0","293""mysql","collations","64.00 KiB","22.38 KiB","4","2","1","287""mysql","column_type_elements","64.00 KiB","34.78 KiB","4","3","0","892""mysql","foreign_keys","48.00 KiB","9.27 KiB","3","1","0","57""mysql","character_sets","48.00 KiB","4.20 KiB","3","1","2","41""mysql","parameters","48.00 KiB","10.38 KiB","3","0","1","83""mysql","table_partitions","48.00 KiB"," 0 bytes","3","0","2","0""mysql","replication_asynchronous_connection_failover","32.00 KiB"," 0 bytes","2","0","2","0""mysql","catalogs","32.00 KiB"," 56 bytes","2","0","1","1""mysql","schemata","32.00 KiB"," 564 bytes","2","1","0","6""mysql","replication_group_member_actions","32.00 KiB","1.54 KiB","2","0","2","2""mysql","check_constraints","32.00 KiB"," 0 bytes","2","0","1","0""mysql","tablespaces","32.00 KiB","2.12 KiB","2","0","1","12""mysql","tablespace_files","32.00 KiB","1.09 KiB","2","0","2","12""mysql","triggers","32.00 KiB"," 854 bytes","2","0","1","2""mysql","help_category","32.00 KiB","8.33 KiB","2","0","2","53""mysql","view_routine_usage","32.00 KiB","1.59 KiB","2","0","1","18""mysql","column_statistics","32.00 KiB"," 0 bytes","2","0","1","0""employees","departments","32.00 KiB"," 513 bytes","2","1","2","9""mysql","tables_priv","16.00 KiB"," 907 bytes","1","0","1","2""mysql","table_stats","16.00 KiB","4.52 KiB","1","1","0","45""mysql","user","16.00 KiB","2.44 KiB","1","0","1","5""mysql","view_table_usage","16.00 KiB","13.03 KiB","1","0","0","187""mysql","role_edges","16.00 KiB"," 0 bytes","1","0","0","0""mysql","resource_groups","16.00 KiB","3.14 KiB","1","0","1","3""mysql","replication_group_configuration_version","16.00 KiB"," 281 bytes","1","0","1","1""mysql","replication_asynchronous_connection_failover_managed","16.00 KiB"," 0 bytes","1","0","1","0""mysql","procs_priv","16.00 KiB"," 0 bytes","1","0","1","0""mysql","parameter_type_elements","16.00 KiB","1.21 KiB","1","0","1","32""mysql","ndb_binlog_index","16.00 KiB"," 0 bytes","1","0","1","0""mysql","innodb_table_stats","16.00 KiB"," 519 bytes","1","0","0","8""mysql","innodb_index_stats","16.00 KiB","3.73 KiB","1","0","0","40""mysql","innodb_dynamic_metadata","16.00 KiB"," 561 bytes","1","0","0","15""mysql","index_stats","16.00 KiB","7.46 KiB","1","0","0","107""mysql","foreign_key_column_usage","16.00 KiB","2.31 KiB","1","0","0","57""mysql","events","16.00 KiB"," 0 bytes","1","0","1","0""mysql","columns_priv","16.00 KiB"," 0 bytes","1","0","1","0"
1 employees salaries 80.45 MiB 73.51 MiB 5149 5140 1761 2411850"employees employees 6.14 MiB 5.63 MiB 393 392 215 133671"mysql st_spatial_reference_systems 5.36 MiB 4.74 MiB 343 0 199 3033"mysql columns 1.08 MiB 873.31 KiB 69 67 0 4112"employees titles 992.00 KiB 898.97 KiB 62 59 0 23186"mysql tables 720.00 KiB 515.85 KiB 45 39 2 377"mysql routines 288.00 KiB 136.51 KiB 18 0 9 50"mysql help_topic 208.00 KiB 144.86 KiB 13 0 12 292"mysql help_keyword 208.00 KiB 130.23 KiB 13 0 13 835"mysql index_column_usage 96.00 KiB 51.63 KiB 6 4 1 1244"mysql help_relation 96.00 KiB 52.16 KiB 6 0 6 2056"mysql indexes 80.00 KiB 40.79 KiB 5 3 0 293"mysql collations 64.00 KiB 22.38 KiB 4 2 1 287"mysql column_type_elements 64.00 KiB 34.78 KiB 4 3 0 892"mysql foreign_keys 48.00 KiB 9.27 KiB 3 1 0 57"mysql character_sets 48.00 KiB 4.20 KiB 3 1 2 41"mysql parameters 48.00 KiB 10.38 KiB 3 0 1 83"mysql table_partitions 48.00 KiB 0 bytes 3 0 2 0"mysql replication_asynchronous_connection_failover 32.00 KiB 0 bytes 2 0 2 0"mysql catalogs 32.00 KiB 56 bytes 2 0 1 1"mysql schemata 32.00 KiB 564 bytes 2 1 0 6"mysql replication_group_member_actions 32.00 KiB 1.54 KiB 2 0 2 2"mysql check_constraints 32.00 KiB 0 bytes 2 0 1 0"mysql tablespaces 32.00 KiB 2.12 KiB 2 0 1 12"mysql tablespace_files 32.00 KiB 1.09 KiB 2 0 2 12"mysql triggers 32.00 KiB 854 bytes 2 0 1 2"mysql help_category 32.00 KiB 8.33 KiB 2 0 2 53"mysql view_routine_usage 32.00 KiB 1.59 KiB 2 0 1 18"mysql column_statistics 32.00 KiB 0 bytes 2 0 1 0"employees departments 32.00 KiB 513 bytes 2 1 2 9"mysql tables_priv 16.00 KiB 907 bytes 1 0 1 2"mysql table_stats 16.00 KiB 4.52 KiB 1 1 0 45"mysql user 16.00 KiB 2.44 KiB 1 0 1 5"mysql view_table_usage 16.00 KiB 13.03 KiB 1 0 0 187"mysql role_edges 16.00 KiB 0 bytes 1 0 0 0"mysql resource_groups 16.00 KiB 3.14 KiB 1 0 1 3"mysql replication_group_configuration_version 16.00 KiB 281 bytes 1 0 1 1"mysql replication_asynchronous_connection_failover_managed 16.00 KiB 0 bytes 1 0 1 0"mysql procs_priv 16.00 KiB 0 bytes 1 0 1 0"mysql parameter_type_elements 16.00 KiB 1.21 KiB 1 0 1 32"mysql ndb_binlog_index 16.00 KiB 0 bytes 1 0 1 0"mysql innodb_table_stats 16.00 KiB 519 bytes 1 0 0 8"mysql innodb_index_stats 16.00 KiB 3.73 KiB 1 0 0 40"mysql innodb_dynamic_metadata 16.00 KiB 561 bytes 1 0 0 15"mysql index_stats 16.00 KiB 7.46 KiB 1 0 0 107"mysql foreign_key_column_usage 16.00 KiB 2.31 KiB 1 0 0 57"mysql events 16.00 KiB 0 bytes 1 0 1 0"mysql columns_priv 16.00 KiB 0 bytes 1 0 1 0

View file

@ -1 +0,0 @@
"log_flusher_thread","36410","12.40 s","1.14 us","340.58 us","286.40 ms","16","NULL""page_flush_coordinator_thread","16784","1.16 s","3.61 us","69.94 us","7.84 ms","13","NULL""log_writer_thread","103539","718.00 ms","1.03 us","6.93 us","232.56 ms","18","NULL""io_write_thread","1005","314.56 ms","1.17 us","313.00 us","5.31 ms","10","NULL""io_write_thread","1008","309.84 ms","1.29 us","307.38 us","7.37 ms","11","NULL""io_write_thread","938","271.71 ms","1.13 us","289.67 us","6.02 ms","12","NULL""io_write_thread","911","257.86 ms","1.07 us","283.06 us","3.11 ms","9","NULL""log_files_governor_thread","733","90.27 ms","1.20 us","123.16 us","8.38 ms","19","NULL""log_checkpointer_thread","75","12.07 ms","1.70 us","160.93 us","1.64 ms","14","NULL""main","506","6.17 ms","223.30 ns","29.51 us","1.59 ms","1","NULL""srv_purge_thread","282","1.17 ms","3.23 us","4.14 us","26.34 us","37","NULL""buf_dump_thread","189","1.06 ms","2.50 us","5.63 us","363.71 us","35","NULL""dict_stats_thread","9","101.04 us","4.24 us","11.23 us","21.74 us","27","NULL""clone_gtid_thread","2","30.61 us","13.79 us","15.31 us","16.83 us","36","NULL"
1 log_flusher_thread 36410 12.40 s 1.14 us 340.58 us 286.40 ms 16 NULL"page_flush_coordinator_thread 16784 1.16 s 3.61 us 69.94 us 7.84 ms 13 NULL"log_writer_thread 103539 718.00 ms 1.03 us 6.93 us 232.56 ms 18 NULL"io_write_thread 1005 314.56 ms 1.17 us 313.00 us 5.31 ms 10 NULL"io_write_thread 1008 309.84 ms 1.29 us 307.38 us 7.37 ms 11 NULL"io_write_thread 938 271.71 ms 1.13 us 289.67 us 6.02 ms 12 NULL"io_write_thread 911 257.86 ms 1.07 us 283.06 us 3.11 ms 9 NULL"log_files_governor_thread 733 90.27 ms 1.20 us 123.16 us 8.38 ms 19 NULL"log_checkpointer_thread 75 12.07 ms 1.70 us 160.93 us 1.64 ms 14 NULL"main 506 6.17 ms 223.30 ns 29.51 us 1.59 ms 1 NULL"srv_purge_thread 282 1.17 ms 3.23 us 4.14 us 26.34 us 37 NULL"buf_dump_thread 189 1.06 ms 2.50 us 5.63 us 363.71 us 35 NULL"dict_stats_thread 9 101.04 us 4.24 us 11.23 us 21.74 us 27 NULL"clone_gtid_thread 2 30.61 us 13.79 us 15.31 us 16.83 us 36 NULL

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1 +0,0 @@
"sql/io_cache","11409","490.89 ms"," 0 ps","43.03 us","224.11 ms","6296","241.95 MiB","39.35 KiB","4729","223.78 MiB","48.46 KiB","465.73 MiB""innodb/innodb_log_file","140817","13.22 s"," 0 ps","93.92 us","286.40 ms","7","67.00 KiB","9.57 KiB","102178","436.90 MiB","4.38 KiB","436.97 MiB""innodb/innodb_data_file","18291","1.84 s"," 0 ps","100.54 us","28.44 ms","2557","40.14 MiB","16.08 KiB","11541","365.78 MiB","32.45 KiB","405.92 MiB""innodb/innodb_dblwr_file","5582","1.03 s","3.61 us","184.42 us","7.84 ms","2","8.38 MiB","4.19 MiB","2787","172.73 MiB","63.47 KiB","181.11 MiB""sql/binlog","8845","272.45 ms"," 0 ps","30.80 us","2.33 ms","373","2.90 MiB","7.96 KiB","8274","63.31 MiB","7.84 KiB","66.21 MiB""innodb/innodb_temp_file","91","25.68 ms","2.15 us","282.19 us","1.63 ms","1","16.00 KiB","16.00 KiB","36","1.44 MiB","40.89 KiB","1.45 MiB""sql/ERRMSG","5","206.55 us","3.27 us","41.31 us","165.02 us","3","369.98 KiB","123.33 KiB","0"," 0 bytes"," 0 bytes","369.98 KiB""mysys/charset","3","29.33 us","2.12 us","9.78 us","18.16 us","1","19.02 KiB","19.02 KiB","0"," 0 bytes"," 0 bytes","19.02 KiB""sql/binlog_index","41","1.07 ms"," 0 ps","26.17 us","906.76 us","8"," 176 bytes"," 22 bytes","0"," 0 bytes"," 0 bytes"," 176 bytes""csv/metadata","8","66.07 us","1.14 us","8.26 us","19.61 us","2"," 70 bytes"," 35 bytes","0"," 0 bytes"," 0 bytes"," 70 bytes""mysys/cnf","5","27.40 us","223.30 ns","5.48 us","17.76 us","3"," 56 bytes"," 18 bytes","0"," 0 bytes"," 0 bytes"," 56 bytes""sql/pid","3","88.11 us","3.30 us","29.37 us","74.63 us","0"," 0 bytes"," 0 bytes","1"," 2 bytes"," 2 bytes"," 2 bytes""sql/casetest","15","1.71 ms"," 0 ps","113.87 us","1.59 ms","0"," 0 bytes"," 0 bytes","0"," 0 bytes"," 0 bytes"," 0 bytes""sql/misc","7","39.44 us"," 0 ps","5.63 us","12.55 us","0"," 0 bytes"," 0 bytes","0"," 0 bytes"," 0 bytes"," 0 bytes""csv/data","6","94.51 us"," 0 ps","15.75 us","42.52 us","0"," 0 bytes"," 0 bytes","0"," 0 bytes"," 0 bytes"," 0 bytes"
1 sql/io_cache 11409 490.89 ms 0 ps 43.03 us 224.11 ms 6296 241.95 MiB 39.35 KiB 4729 223.78 MiB 48.46 KiB 465.73 MiB"innodb/innodb_log_file 140817 13.22 s 0 ps 93.92 us 286.40 ms 7 67.00 KiB 9.57 KiB 102178 436.90 MiB 4.38 KiB 436.97 MiB"innodb/innodb_data_file 18291 1.84 s 0 ps 100.54 us 28.44 ms 2557 40.14 MiB 16.08 KiB 11541 365.78 MiB 32.45 KiB 405.92 MiB"innodb/innodb_dblwr_file 5582 1.03 s 3.61 us 184.42 us 7.84 ms 2 8.38 MiB 4.19 MiB 2787 172.73 MiB 63.47 KiB 181.11 MiB"sql/binlog 8845 272.45 ms 0 ps 30.80 us 2.33 ms 373 2.90 MiB 7.96 KiB 8274 63.31 MiB 7.84 KiB 66.21 MiB"innodb/innodb_temp_file 91 25.68 ms 2.15 us 282.19 us 1.63 ms 1 16.00 KiB 16.00 KiB 36 1.44 MiB 40.89 KiB 1.45 MiB"sql/ERRMSG 5 206.55 us 3.27 us 41.31 us 165.02 us 3 369.98 KiB 123.33 KiB 0 0 bytes 0 bytes 369.98 KiB"mysys/charset 3 29.33 us 2.12 us 9.78 us 18.16 us 1 19.02 KiB 19.02 KiB 0 0 bytes 0 bytes 19.02 KiB"sql/binlog_index 41 1.07 ms 0 ps 26.17 us 906.76 us 8 176 bytes 22 bytes 0 0 bytes 0 bytes 176 bytes"csv/metadata 8 66.07 us 1.14 us 8.26 us 19.61 us 2 70 bytes 35 bytes 0 0 bytes 0 bytes 70 bytes"mysys/cnf 5 27.40 us 223.30 ns 5.48 us 17.76 us 3 56 bytes 18 bytes 0 0 bytes 0 bytes 56 bytes"sql/pid 3 88.11 us 3.30 us 29.37 us 74.63 us 0 0 bytes 0 bytes 1 2 bytes 2 bytes 2 bytes"sql/casetest 15 1.71 ms 0 ps 113.87 us 1.59 ms 0 0 bytes 0 bytes 0 0 bytes 0 bytes 0 bytes"sql/misc 7 39.44 us 0 ps 5.63 us 12.55 us 0 0 bytes 0 bytes 0 0 bytes 0 bytes 0 bytes"csv/data 6 94.51 us 0 ps 15.75 us 42.52 us 0 0 bytes 0 bytes 0 0 bytes 0 bytes 0 bytes

Some files were not shown because too many files have changed in this diff Show more