diff --git a/.github/workflows/generate_mariadb_examples.yml b/.github/workflows/generate_mariadb_examples.yml deleted file mode 100644 index 1b205c3..0000000 --- a/.github/workflows/generate_mariadb_examples.yml +++ /dev/null @@ -1,74 +0,0 @@ -# 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: false - commit_prefix: "[AUTO]" - commit_message: "Updates MariaDb result examples (via Actions)" - force: true - target_branch: examples \ No newline at end of file diff --git a/.github/workflows/generate_mysql_examples.yml b/.github/workflows/generate_mysql_examples.yml deleted file mode 100644 index 221a027..0000000 --- a/.github/workflows/generate_mysql_examples.yml +++ /dev/null @@ -1,74 +0,0 @@ -# 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: false - commit_prefix: "[AUTO]" - commit_message: "Updates MySQL result examples (via Actions)" - force: true - target_branch: examples \ No newline at end of file diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml deleted file mode 100644 index e4bc6b2..0000000 --- a/.github/workflows/pull_request.yml +++ /dev/null @@ -1,77 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI for MySQL Tuner for MySQL 5.7 and 8.0 - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - pull_request: - branches: [ master ] - - # 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" - 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 - - - name: Run help mode - run: | - 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 diff --git a/.github/workflows/run_mt_with_db.yml b/.github/workflows/run_mt_with_db.yml deleted file mode 100644 index fe20bd8..0000000 --- a/.github/workflows/run_mt_with_db.yml +++ /dev/null @@ -1,56 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Test with databases - -# 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" - 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: - - 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: 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 help mode - run: perl ./mysqltuner.pl --help - - # Runs a single command using the runners shell - - name: Run verbose mode - run: sudo perl ./mysqltuner.pl --user=root --pass=root --protocol tcp --verbose diff --git a/.github/workflows/update_cve_and_docs.yml b/.github/workflows/update_cve_and_docs.yml deleted file mode 100644 index 82b106e..0000000 --- a/.github/workflows/update_cve_and_docs.yml +++ /dev/null @@ -1,48 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -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: - -# 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: - - name: Setup MySQL Tuner repository - uses: actions/checkout@v3 - - - name: Install dependencies - run: | - pwd - cd build - pwd - sudo bash ./installStaff.sh - - - name: Update CVE and docs - run: | - pwd - cd ./build - pwd - sudo bash ./updateStaff.sh - - - name: Run the Action - uses: devops-infra/action-commit-push@master - with: - github_token: "${{ secrets.GITHUB_TOKEN }}" - add_timestamp: true - commit_prefix: "[AUTO]" - commit_message: "Updates CVE and docs (via Actions)" - force: false - target_branch: "cve-docs" \ No newline at end of file diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.perltidy b/.perltidy old mode 100644 new mode 100755 diff --git a/.travis.yml b/.travis.yml old mode 100644 new mode 100755 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md old mode 100644 new mode 100755 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md old mode 100644 new mode 100755 diff --git a/INTERNALS.md b/INTERNALS.md old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.fr.md b/README.fr.md old mode 100644 new mode 100755 diff --git a/README.it.md b/README.it.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/README.ru.md b/README.ru.md old mode 100644 new mode 100755 diff --git a/SECURITY.md b/SECURITY.md old mode 100644 new mode 100755 diff --git a/USAGE.md b/USAGE.md old mode 100644 new mode 100755 diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile old mode 100644 new mode 100755 diff --git a/Vagrant/prepare.sh b/Vagrant/prepare.sh old mode 100644 new mode 100755 diff --git a/basic_passwords.txt b/basic_passwords.txt old mode 100644 new mode 100755 diff --git a/build/bashrc b/build/bashrc old mode 100644 new mode 100755 diff --git a/build/build_rpm.sh b/build/build_rpm.sh old mode 100644 new mode 100755 diff --git a/build/clean.sh b/build/clean.sh old mode 100644 new mode 100755 diff --git a/build/clearContainer.sh b/build/clearContainer.sh old mode 100644 new mode 100755 diff --git a/build/configimg.conf b/build/configimg.conf old mode 100644 new mode 100755 diff --git a/build/createMassDockerImages.sh b/build/createMassDockerImages.sh old mode 100644 new mode 100755 diff --git a/build/createTestEnvs.sh b/build/createTestEnvs.sh old mode 100644 new mode 100755 diff --git a/build/deployOn b/build/deployOn old mode 100644 new mode 100755 diff --git a/build/fetchSampleDatabases.sh b/build/fetchSampleDatabases.sh old mode 100644 new mode 100755 diff --git a/build/installStaff.sh b/build/installStaff.sh old mode 100644 new mode 100755 diff --git a/build/mysqltuner.spec.tpl b/build/mysqltuner.spec.tpl old mode 100644 new mode 100755 diff --git a/build/runAudit.sh b/build/runAudit.sh old mode 100644 new mode 100755 diff --git a/build/runMT.sh b/build/runMT.sh old mode 100644 new mode 100755 diff --git a/build/sync.sh b/build/sync.sh old mode 100644 new mode 100755 diff --git a/build/txt2Html.pl b/build/txt2Html.pl old mode 100644 new mode 100755 diff --git a/build/updateCVElist.pl b/build/updateCVElist.pl old mode 100644 new mode 100755 diff --git a/build/updateStaff.sh b/build/updateStaff.sh old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.2/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.2/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.2/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.2/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.2/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.2/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.2/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.2/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.2/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.2/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_ENGINES.csv b/examples/github/result/mariadb/10.2/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_EVENTS.csv b/examples/github/result/mariadb/10.2/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_FILES.csv b/examples/github/result/mariadb/10.2/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.2/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.2/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.2/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.2/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_MUTEXES.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_MUTEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_TABLESPACES_SCRUBBING.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_TABLESPACES_SCRUBBING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.2/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.2/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.2/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.2/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.2/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.2/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.2/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.2/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_PROFILING.csv b/examples/github/result/mariadb/10.2/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.2/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.2/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.2/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.2/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.2/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.2/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.2/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.2/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.2/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.2/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TABLES.csv b/examples/github/result/mariadb/10.2/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.2/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.2/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.2/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.2/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.2/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.2/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.2/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_VIEWS.csv b/examples/github/result/mariadb/10.2/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/ifs_user_variables.csv b/examples/github/result/mariadb/10.2/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/result.json b/examples/github/result/mariadb/10.2/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.2/result.txt b/examples/github/result/mariadb/10.2/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.3/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.3/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.3/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.3/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.3/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.3/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.3/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.3/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.3/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.3/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_ENGINES.csv b/examples/github/result/mariadb/10.3/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_EVENTS.csv b/examples/github/result/mariadb/10.3/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_FILES.csv b/examples/github/result/mariadb/10.3/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.3/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.3/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.3/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.3/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_MUTEXES.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_MUTEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_TABLESPACES_SCRUBBING.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_TABLESPACES_SCRUBBING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.3/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.3/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.3/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.3/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.3/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.3/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.3/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.3/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_PROFILING.csv b/examples/github/result/mariadb/10.3/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.3/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.3/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.3/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.3/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.3/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.3/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.3/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.3/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.3/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.3/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TABLES.csv b/examples/github/result/mariadb/10.3/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.3/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.3/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.3/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.3/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.3/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.3/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.3/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_VIEWS.csv b/examples/github/result/mariadb/10.3/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/ifs_user_variables.csv b/examples/github/result/mariadb/10.3/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/result.json b/examples/github/result/mariadb/10.3/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.3/result.txt b/examples/github/result/mariadb/10.3/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.4/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.4/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.4/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.4/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.4/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.4/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.4/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.4/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.4/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.4/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_ENGINES.csv b/examples/github/result/mariadb/10.4/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_EVENTS.csv b/examples/github/result/mariadb/10.4/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_FILES.csv b/examples/github/result/mariadb/10.4/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.4/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.4/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.4/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.4/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_MUTEXES.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_MUTEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_TABLESPACES_SCRUBBING.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_TABLESPACES_SCRUBBING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.4/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.4/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.4/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.4/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.4/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.4/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.4/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.4/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.4/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_PROFILING.csv b/examples/github/result/mariadb/10.4/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.4/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.4/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.4/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.4/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.4/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.4/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.4/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.4/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.4/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.4/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TABLES.csv b/examples/github/result/mariadb/10.4/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.4/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.4/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.4/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.4/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.4/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.4/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.4/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_VIEWS.csv b/examples/github/result/mariadb/10.4/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/ifs_user_variables.csv b/examples/github/result/mariadb/10.4/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/result.json b/examples/github/result/mariadb/10.4/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.4/result.txt b/examples/github/result/mariadb/10.4/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.5/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.5/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.5/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.5/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.5/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.5/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.5/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.5/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.5/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.5/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_ENGINES.csv b/examples/github/result/mariadb/10.5/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_EVENTS.csv b/examples/github/result/mariadb/10.5/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_FILES.csv b/examples/github/result/mariadb/10.5/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.5/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.5/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.5/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.5/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_MUTEXES.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_MUTEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_SEMAPHORE_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.5/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.5/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.5/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.5/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.5/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.5/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.5/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.5/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.5/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_PROFILING.csv b/examples/github/result/mariadb/10.5/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.5/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.5/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.5/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.5/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.5/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.5/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.5/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.5/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.5/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.5/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TABLES.csv b/examples/github/result/mariadb/10.5/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.5/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.5/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.5/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.5/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_GROUPS.csv b/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_QUEUES.csv b/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_QUEUES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_STATS.csv b/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_WAITS.csv b/examples/github/result/mariadb/10.5/ifs_THREAD_POOL_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.5/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.5/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.5/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_VIEWS.csv b/examples/github/result/mariadb/10.5/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/ifs_user_variables.csv b/examples/github/result/mariadb/10.5/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/result.json b/examples/github/result/mariadb/10.5/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.5/result.txt b/examples/github/result/mariadb/10.5/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.6/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.6/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.6/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.6/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.6/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.6/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.6/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.6/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.6/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.6/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_ENGINES.csv b/examples/github/result/mariadb/10.6/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_EVENTS.csv b/examples/github/result/mariadb/10.6/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_FILES.csv b/examples/github/result/mariadb/10.6/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.6/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.6/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.6/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.6/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.6/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.6/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.6/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.6/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.6/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.6/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.6/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.6/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.6/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_PROFILING.csv b/examples/github/result/mariadb/10.6/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.6/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.6/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.6/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.6/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.6/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.6/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.6/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.6/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.6/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.6/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TABLES.csv b/examples/github/result/mariadb/10.6/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.6/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.6/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.6/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.6/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_GROUPS.csv b/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_QUEUES.csv b/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_QUEUES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_STATS.csv b/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_WAITS.csv b/examples/github/result/mariadb/10.6/ifs_THREAD_POOL_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.6/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.6/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.6/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_VIEWS.csv b/examples/github/result/mariadb/10.6/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/ifs_user_variables.csv b/examples/github/result/mariadb/10.6/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/result.json b/examples/github/result/mariadb/10.6/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.6/result.txt b/examples/github/result/mariadb/10.6/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.7/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.7/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.7/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.7/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.7/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.7/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.7/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.7/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.7/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.7/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_ENGINES.csv b/examples/github/result/mariadb/10.7/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_EVENTS.csv b/examples/github/result/mariadb/10.7/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_FILES.csv b/examples/github/result/mariadb/10.7/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.7/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.7/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.7/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.7/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.7/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.7/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.7/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.7/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.7/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.7/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.7/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.7/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.7/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_PROFILING.csv b/examples/github/result/mariadb/10.7/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.7/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.7/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.7/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.7/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.7/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.7/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.7/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.7/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.7/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.7/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TABLES.csv b/examples/github/result/mariadb/10.7/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.7/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.7/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.7/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.7/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_GROUPS.csv b/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_QUEUES.csv b/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_QUEUES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_STATS.csv b/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_WAITS.csv b/examples/github/result/mariadb/10.7/ifs_THREAD_POOL_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.7/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.7/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.7/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_VIEWS.csv b/examples/github/result/mariadb/10.7/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/ifs_user_variables.csv b/examples/github/result/mariadb/10.7/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/result.json b/examples/github/result/mariadb/10.7/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.7/result.txt b/examples/github/result/mariadb/10.7/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.8/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.8/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.8/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.8/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.8/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.8/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.8/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.8/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.8/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.8/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_ENGINES.csv b/examples/github/result/mariadb/10.8/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_EVENTS.csv b/examples/github/result/mariadb/10.8/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_FILES.csv b/examples/github/result/mariadb/10.8/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.8/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.8/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.8/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.8/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.8/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.8/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.8/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.8/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.8/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.8/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.8/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.8/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.8/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_PROFILING.csv b/examples/github/result/mariadb/10.8/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.8/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.8/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.8/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.8/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.8/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.8/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.8/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.8/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.8/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.8/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TABLES.csv b/examples/github/result/mariadb/10.8/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.8/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.8/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.8/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.8/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_GROUPS.csv b/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_QUEUES.csv b/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_QUEUES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_STATS.csv b/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_WAITS.csv b/examples/github/result/mariadb/10.8/ifs_THREAD_POOL_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.8/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.8/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.8/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_VIEWS.csv b/examples/github/result/mariadb/10.8/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/ifs_user_variables.csv b/examples/github/result/mariadb/10.8/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/result.json b/examples/github/result/mariadb/10.8/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.8/result.txt b/examples/github/result/mariadb/10.8/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_ALL_PLUGINS.csv b/examples/github/result/mariadb/10.9/ifs_ALL_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mariadb/10.9/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_CHARACTER_SETS.csv b/examples/github/result/mariadb/10.9/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mariadb/10.9/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_CLIENT_STATISTICS.csv b/examples/github/result/mariadb/10.9/ifs_CLIENT_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_COLLATIONS.csv b/examples/github/result/mariadb/10.9/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mariadb/10.9/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_COLUMNS.csv b/examples/github/result/mariadb/10.9/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mariadb/10.9/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_ENABLED_ROLES.csv b/examples/github/result/mariadb/10.9/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_ENGINES.csv b/examples/github/result/mariadb/10.9/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_EVENTS.csv b/examples/github/result/mariadb/10.9/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_FILES.csv b/examples/github/result/mariadb/10.9/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_GEOMETRY_COLUMNS.csv b/examples/github/result/mariadb/10.9/ifs_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_GLOBAL_STATUS.csv b/examples/github/result/mariadb/10.9/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mariadb/10.9/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INDEX_STATISTICS.csv b/examples/github/result/mariadb/10.9/ifs_INDEX_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMP.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMPMEM.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_LOCKS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_METRICS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_TABLESPACES_ENCRYPTION.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_TABLESPACES_ENCRYPTION.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_INNODB_TRX.csv b/examples/github/result/mariadb/10.9/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_KEYWORDS.csv b/examples/github/result/mariadb/10.9/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_KEY_CACHES.csv b/examples/github/result/mariadb/10.9/ifs_KEY_CACHES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mariadb/10.9/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mariadb/10.9/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_PARAMETERS.csv b/examples/github/result/mariadb/10.9/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_PARTITIONS.csv b/examples/github/result/mariadb/10.9/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_PLUGINS.csv b/examples/github/result/mariadb/10.9/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_PROCESSLIST.csv b/examples/github/result/mariadb/10.9/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_PROFILING.csv b/examples/github/result/mariadb/10.9/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mariadb/10.9/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_ROUTINES.csv b/examples/github/result/mariadb/10.9/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SCHEMATA.csv b/examples/github/result/mariadb/10.9/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mariadb/10.9/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SESSION_STATUS.csv b/examples/github/result/mariadb/10.9/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SESSION_VARIABLES.csv b/examples/github/result/mariadb/10.9/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SPATIAL_REF_SYS.csv b/examples/github/result/mariadb/10.9/ifs_SPATIAL_REF_SYS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SQL_FUNCTIONS.csv b/examples/github/result/mariadb/10.9/ifs_SQL_FUNCTIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_STATISTICS.csv b/examples/github/result/mariadb/10.9/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_SYSTEM_VARIABLES.csv b/examples/github/result/mariadb/10.9/ifs_SYSTEM_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TABLES.csv b/examples/github/result/mariadb/10.9/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TABLESPACES.csv b/examples/github/result/mariadb/10.9/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mariadb/10.9/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mariadb/10.9/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TABLE_STATISTICS.csv b/examples/github/result/mariadb/10.9/ifs_TABLE_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_GROUPS.csv b/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_QUEUES.csv b/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_QUEUES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_STATS.csv b/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_WAITS.csv b/examples/github/result/mariadb/10.9/ifs_THREAD_POOL_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_TRIGGERS.csv b/examples/github/result/mariadb/10.9/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_USER_PRIVILEGES.csv b/examples/github/result/mariadb/10.9/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_USER_STATISTICS.csv b/examples/github/result/mariadb/10.9/ifs_USER_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_VIEWS.csv b/examples/github/result/mariadb/10.9/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/ifs_user_variables.csv b/examples/github/result/mariadb/10.9/ifs_user_variables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/result.json b/examples/github/result/mariadb/10.9/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mariadb/10.9/result.txt b/examples/github/result/mariadb/10.9/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_CHARACTER_SETS.csv b/examples/github/result/mysql/5.6/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_COLLATIONS.csv b/examples/github/result/mysql/5.6/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mysql/5.6/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_COLUMNS.csv b/examples/github/result/mysql/5.6/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mysql/5.6/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_ENGINES.csv b/examples/github/result/mysql/5.6/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_EVENTS.csv b/examples/github/result/mysql/5.6/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_FILES.csv b/examples/github/result/mysql/5.6/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_GLOBAL_STATUS.csv b/examples/github/result/mysql/5.6/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mysql/5.6/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMP.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMPMEM.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mysql/5.6/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mysql/5.6/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_LOCKS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_METRICS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mysql/5.6/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_INNODB_TRX.csv b/examples/github/result/mysql/5.6/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mysql/5.6/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mysql/5.6/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_PARAMETERS.csv b/examples/github/result/mysql/5.6/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_PARTITIONS.csv b/examples/github/result/mysql/5.6/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_PLUGINS.csv b/examples/github/result/mysql/5.6/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_PROCESSLIST.csv b/examples/github/result/mysql/5.6/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_PROFILING.csv b/examples/github/result/mysql/5.6/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mysql/5.6/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_ROUTINES.csv b/examples/github/result/mysql/5.6/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_SCHEMATA.csv b/examples/github/result/mysql/5.6/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mysql/5.6/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_SESSION_STATUS.csv b/examples/github/result/mysql/5.6/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_SESSION_VARIABLES.csv b/examples/github/result/mysql/5.6/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_STATISTICS.csv b/examples/github/result/mysql/5.6/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_TABLES.csv b/examples/github/result/mysql/5.6/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_TABLESPACES.csv b/examples/github/result/mysql/5.6/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mysql/5.6/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mysql/5.6/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_TRIGGERS.csv b/examples/github/result/mysql/5.6/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_USER_PRIVILEGES.csv b/examples/github/result/mysql/5.6/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/ifs_VIEWS.csv b/examples/github/result/mysql/5.6/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/result.json b/examples/github/result/mysql/5.6/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.6/result.txt b/examples/github/result/mysql/5.6/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_CHARACTER_SETS.csv b/examples/github/result/mysql/5.7/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_COLLATIONS.csv b/examples/github/result/mysql/5.7/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mysql/5.7/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_COLUMNS.csv b/examples/github/result/mysql/5.7/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mysql/5.7/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_ENGINES.csv b/examples/github/result/mysql/5.7/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_EVENTS.csv b/examples/github/result/mysql/5.7/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_FILES.csv b/examples/github/result/mysql/5.7/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_GLOBAL_STATUS.csv b/examples/github/result/mysql/5.7/ifs_GLOBAL_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_GLOBAL_VARIABLES.csv b/examples/github/result/mysql/5.7/ifs_GLOBAL_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMP.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMPMEM.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mysql/5.7/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mysql/5.7/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_LOCKS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_LOCKS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_LOCK_WAITS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_LOCK_WAITS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_METRICS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_COLUMNS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_DATAFILES.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FIELDS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FOREIGN.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FOREIGN_COLS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_INDEXES.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLES.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLESPACES.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLESTATS.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_SYS_VIRTUAL.csv b/examples/github/result/mysql/5.7/ifs_INNODB_SYS_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_TEMP_TABLE_INFO.csv b/examples/github/result/mysql/5.7/ifs_INNODB_TEMP_TABLE_INFO.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_INNODB_TRX.csv b/examples/github/result/mysql/5.7/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mysql/5.7/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mysql/5.7/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_PARAMETERS.csv b/examples/github/result/mysql/5.7/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_PARTITIONS.csv b/examples/github/result/mysql/5.7/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_PLUGINS.csv b/examples/github/result/mysql/5.7/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_PROCESSLIST.csv b/examples/github/result/mysql/5.7/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_PROFILING.csv b/examples/github/result/mysql/5.7/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mysql/5.7/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_ROUTINES.csv b/examples/github/result/mysql/5.7/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_SCHEMATA.csv b/examples/github/result/mysql/5.7/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mysql/5.7/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_SESSION_STATUS.csv b/examples/github/result/mysql/5.7/ifs_SESSION_STATUS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_SESSION_VARIABLES.csv b/examples/github/result/mysql/5.7/ifs_SESSION_VARIABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_STATISTICS.csv b/examples/github/result/mysql/5.7/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_TABLES.csv b/examples/github/result/mysql/5.7/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_TABLESPACES.csv b/examples/github/result/mysql/5.7/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mysql/5.7/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mysql/5.7/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_TRIGGERS.csv b/examples/github/result/mysql/5.7/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_USER_PRIVILEGES.csv b/examples/github/result/mysql/5.7/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/ifs_VIEWS.csv b/examples/github/result/mysql/5.7/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary.csv b/examples/github/result/mysql/5.7/pfs_host_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary_by_file_io.csv b/examples/github/result/mysql/5.7/pfs_host_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary_by_file_io_type.csv b/examples/github/result/mysql/5.7/pfs_host_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary_by_stages.csv b/examples/github/result/mysql/5.7/pfs_host_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary_by_statement_latency.csv b/examples/github/result/mysql/5.7/pfs_host_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_host_summary_by_statement_type.csv b/examples/github/result/mysql/5.7/pfs_host_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_innodb_buffer_stats_by_schema.csv b/examples/github/result/mysql/5.7/pfs_innodb_buffer_stats_by_schema.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_innodb_buffer_stats_by_table.csv b/examples/github/result/mysql/5.7/pfs_innodb_buffer_stats_by_table.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_innodb_lock_waits.csv b/examples/github/result/mysql/5.7/pfs_innodb_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_io_by_thread_by_latency.csv b/examples/github/result/mysql/5.7/pfs_io_by_thread_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_io_global_by_file_by_bytes.csv b/examples/github/result/mysql/5.7/pfs_io_global_by_file_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_io_global_by_file_by_latency.csv b/examples/github/result/mysql/5.7/pfs_io_global_by_file_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_io_global_by_wait_by_bytes.csv b/examples/github/result/mysql/5.7/pfs_io_global_by_wait_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_io_global_by_wait_by_latency.csv b/examples/github/result/mysql/5.7/pfs_io_global_by_wait_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_latest_file_io.csv b/examples/github/result/mysql/5.7/pfs_latest_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_memory_by_host_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_memory_by_host_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_memory_by_thread_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_memory_by_thread_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_memory_by_user_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_memory_by_user_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_memory_global_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_memory_global_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_memory_global_total.csv b/examples/github/result/mysql/5.7/pfs_memory_global_total.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_metrics.csv b/examples/github/result/mysql/5.7/pfs_metrics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_processlist.csv b/examples/github/result/mysql/5.7/pfs_processlist.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_ps_check_lost_instrumentation.csv b/examples/github/result/mysql/5.7/pfs_ps_check_lost_instrumentation.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_auto_increment_columns.csv b/examples/github/result/mysql/5.7/pfs_schema_auto_increment_columns.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_index_statistics.csv b/examples/github/result/mysql/5.7/pfs_schema_index_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_object_overview.csv b/examples/github/result/mysql/5.7/pfs_schema_object_overview.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_redundant_indexes.csv b/examples/github/result/mysql/5.7/pfs_schema_redundant_indexes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_table_lock_waits.csv b/examples/github/result/mysql/5.7/pfs_schema_table_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_table_statistics.csv b/examples/github/result/mysql/5.7/pfs_schema_table_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_table_statistics_with_buffer.csv b/examples/github/result/mysql/5.7/pfs_schema_table_statistics_with_buffer.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_tables_with_full_table_scans.csv b/examples/github/result/mysql/5.7/pfs_schema_tables_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_schema_unused_indexes.csv b/examples/github/result/mysql/5.7/pfs_schema_unused_indexes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_session.csv b/examples/github/result/mysql/5.7/pfs_session.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_session_ssl_status.csv b/examples/github/result/mysql/5.7/pfs_session_ssl_status.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statement_analysis.csv b/examples/github/result/mysql/5.7/pfs_statement_analysis.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statements_with_errors_or_warnings.csv b/examples/github/result/mysql/5.7/pfs_statements_with_errors_or_warnings.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statements_with_full_table_scans.csv b/examples/github/result/mysql/5.7/pfs_statements_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statements_with_runtimes_in_95th_percentile.csv b/examples/github/result/mysql/5.7/pfs_statements_with_runtimes_in_95th_percentile.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statements_with_sorting.csv b/examples/github/result/mysql/5.7/pfs_statements_with_sorting.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_statements_with_temp_tables.csv b/examples/github/result/mysql/5.7/pfs_statements_with_temp_tables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_sys_config.csv b/examples/github/result/mysql/5.7/pfs_sys_config.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary.csv b/examples/github/result/mysql/5.7/pfs_user_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary_by_file_io.csv b/examples/github/result/mysql/5.7/pfs_user_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary_by_file_io_type.csv b/examples/github/result/mysql/5.7/pfs_user_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary_by_stages.csv b/examples/github/result/mysql/5.7/pfs_user_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary_by_statement_latency.csv b/examples/github/result/mysql/5.7/pfs_user_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_user_summary_by_statement_type.csv b/examples/github/result/mysql/5.7/pfs_user_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_version.csv b/examples/github/result/mysql/5.7/pfs_version.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_wait_classes_global_by_avg_latency.csv b/examples/github/result/mysql/5.7/pfs_wait_classes_global_by_avg_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_wait_classes_global_by_latency.csv b/examples/github/result/mysql/5.7/pfs_wait_classes_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_waits_by_host_by_latency.csv b/examples/github/result/mysql/5.7/pfs_waits_by_host_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_waits_by_user_by_latency.csv b/examples/github/result/mysql/5.7/pfs_waits_by_user_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_waits_global_by_latency.csv b/examples/github/result/mysql/5.7/pfs_waits_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary_by_file_io.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary_by_file_io_type.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary_by_stages.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary_by_statement_latency.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$host_summary_by_statement_type.csv b/examples/github/result/mysql/5.7/pfs_x$host_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$innodb_buffer_stats_by_schema.csv b/examples/github/result/mysql/5.7/pfs_x$innodb_buffer_stats_by_schema.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$innodb_buffer_stats_by_table.csv b/examples/github/result/mysql/5.7/pfs_x$innodb_buffer_stats_by_table.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$innodb_lock_waits.csv b/examples/github/result/mysql/5.7/pfs_x$innodb_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$io_by_thread_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$io_by_thread_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$io_global_by_file_by_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$io_global_by_file_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$io_global_by_file_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$io_global_by_file_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$io_global_by_wait_by_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$io_global_by_wait_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$io_global_by_wait_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$io_global_by_wait_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$latest_file_io.csv b/examples/github/result/mysql/5.7/pfs_x$latest_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$memory_by_host_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$memory_by_host_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$memory_by_thread_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$memory_by_thread_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$memory_by_user_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$memory_by_user_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$memory_global_by_current_bytes.csv b/examples/github/result/mysql/5.7/pfs_x$memory_global_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$memory_global_total.csv b/examples/github/result/mysql/5.7/pfs_x$memory_global_total.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$processlist.csv b/examples/github/result/mysql/5.7/pfs_x$processlist.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$ps_digest_95th_percentile_by_avg_us.csv b/examples/github/result/mysql/5.7/pfs_x$ps_digest_95th_percentile_by_avg_us.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$ps_digest_avg_latency_distribution.csv b/examples/github/result/mysql/5.7/pfs_x$ps_digest_avg_latency_distribution.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$ps_schema_table_statistics_io.csv b/examples/github/result/mysql/5.7/pfs_x$ps_schema_table_statistics_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_flattened_keys.csv b/examples/github/result/mysql/5.7/pfs_x$schema_flattened_keys.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_index_statistics.csv b/examples/github/result/mysql/5.7/pfs_x$schema_index_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_table_lock_waits.csv b/examples/github/result/mysql/5.7/pfs_x$schema_table_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_table_statistics.csv b/examples/github/result/mysql/5.7/pfs_x$schema_table_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_table_statistics_with_buffer.csv b/examples/github/result/mysql/5.7/pfs_x$schema_table_statistics_with_buffer.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$schema_tables_with_full_table_scans.csv b/examples/github/result/mysql/5.7/pfs_x$schema_tables_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$session.csv b/examples/github/result/mysql/5.7/pfs_x$session.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statement_analysis.csv b/examples/github/result/mysql/5.7/pfs_x$statement_analysis.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statements_with_errors_or_warnings.csv b/examples/github/result/mysql/5.7/pfs_x$statements_with_errors_or_warnings.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statements_with_full_table_scans.csv b/examples/github/result/mysql/5.7/pfs_x$statements_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statements_with_runtimes_in_95th_percentile.csv b/examples/github/result/mysql/5.7/pfs_x$statements_with_runtimes_in_95th_percentile.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statements_with_sorting.csv b/examples/github/result/mysql/5.7/pfs_x$statements_with_sorting.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$statements_with_temp_tables.csv b/examples/github/result/mysql/5.7/pfs_x$statements_with_temp_tables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary_by_file_io.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary_by_file_io_type.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary_by_stages.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary_by_statement_latency.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$user_summary_by_statement_type.csv b/examples/github/result/mysql/5.7/pfs_x$user_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$wait_classes_global_by_avg_latency.csv b/examples/github/result/mysql/5.7/pfs_x$wait_classes_global_by_avg_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$wait_classes_global_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$wait_classes_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$waits_by_host_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$waits_by_host_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$waits_by_user_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$waits_by_user_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/pfs_x$waits_global_by_latency.csv b/examples/github/result/mysql/5.7/pfs_x$waits_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/result.json b/examples/github/result/mysql/5.7/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/5.7/result.txt b/examples/github/result/mysql/5.7/result.txt old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ADMINISTRABLE_ROLE_AUTHORIZATIONS.csv b/examples/github/result/mysql/8/ifs_ADMINISTRABLE_ROLE_AUTHORIZATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_APPLICABLE_ROLES.csv b/examples/github/result/mysql/8/ifs_APPLICABLE_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_CHARACTER_SETS.csv b/examples/github/result/mysql/8/ifs_CHARACTER_SETS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_CHECK_CONSTRAINTS.csv b/examples/github/result/mysql/8/ifs_CHECK_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLLATIONS.csv b/examples/github/result/mysql/8/ifs_COLLATIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv b/examples/github/result/mysql/8/ifs_COLLATION_CHARACTER_SET_APPLICABILITY.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLUMNS.csv b/examples/github/result/mysql/8/ifs_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLUMNS_EXTENSIONS.csv b/examples/github/result/mysql/8/ifs_COLUMNS_EXTENSIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLUMN_PRIVILEGES.csv b/examples/github/result/mysql/8/ifs_COLUMN_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_COLUMN_STATISTICS.csv b/examples/github/result/mysql/8/ifs_COLUMN_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ENABLED_ROLES.csv b/examples/github/result/mysql/8/ifs_ENABLED_ROLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ENGINES.csv b/examples/github/result/mysql/8/ifs_ENGINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_EVENTS.csv b/examples/github/result/mysql/8/ifs_EVENTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_FILES.csv b/examples/github/result/mysql/8/ifs_FILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_BUFFER_PAGE.csv b/examples/github/result/mysql/8/ifs_INNODB_BUFFER_PAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_BUFFER_PAGE_LRU.csv b/examples/github/result/mysql/8/ifs_INNODB_BUFFER_PAGE_LRU.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_BUFFER_POOL_STATS.csv b/examples/github/result/mysql/8/ifs_INNODB_BUFFER_POOL_STATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CACHED_INDEXES.csv b/examples/github/result/mysql/8/ifs_INNODB_CACHED_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMP.csv b/examples/github/result/mysql/8/ifs_INNODB_CMP.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMPMEM.csv b/examples/github/result/mysql/8/ifs_INNODB_CMPMEM.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMPMEM_RESET.csv b/examples/github/result/mysql/8/ifs_INNODB_CMPMEM_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMP_PER_INDEX.csv b/examples/github/result/mysql/8/ifs_INNODB_CMP_PER_INDEX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMP_PER_INDEX_RESET.csv b/examples/github/result/mysql/8/ifs_INNODB_CMP_PER_INDEX_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_CMP_RESET.csv b/examples/github/result/mysql/8/ifs_INNODB_CMP_RESET.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_COLUMNS.csv b/examples/github/result/mysql/8/ifs_INNODB_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_DATAFILES.csv b/examples/github/result/mysql/8/ifs_INNODB_DATAFILES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FIELDS.csv b/examples/github/result/mysql/8/ifs_INNODB_FIELDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FOREIGN.csv b/examples/github/result/mysql/8/ifs_INNODB_FOREIGN.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FOREIGN_COLS.csv b/examples/github/result/mysql/8/ifs_INNODB_FOREIGN_COLS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_BEING_DELETED.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_BEING_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_CONFIG.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_CONFIG.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_DEFAULT_STOPWORD.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_DEFAULT_STOPWORD.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_DELETED.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_DELETED.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_INDEX_CACHE.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_INDEX_CACHE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_FT_INDEX_TABLE.csv b/examples/github/result/mysql/8/ifs_INNODB_FT_INDEX_TABLE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_INDEXES.csv b/examples/github/result/mysql/8/ifs_INNODB_INDEXES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_METRICS.csv b/examples/github/result/mysql/8/ifs_INNODB_METRICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_SESSION_TEMP_TABLESPACES.csv b/examples/github/result/mysql/8/ifs_INNODB_SESSION_TEMP_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TABLES.csv b/examples/github/result/mysql/8/ifs_INNODB_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TABLESPACES.csv b/examples/github/result/mysql/8/ifs_INNODB_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TABLESPACES_BRIEF.csv b/examples/github/result/mysql/8/ifs_INNODB_TABLESPACES_BRIEF.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TABLESTATS.csv b/examples/github/result/mysql/8/ifs_INNODB_TABLESTATS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TEMP_TABLE_INFO.csv b/examples/github/result/mysql/8/ifs_INNODB_TEMP_TABLE_INFO.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_TRX.csv b/examples/github/result/mysql/8/ifs_INNODB_TRX.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_INNODB_VIRTUAL.csv b/examples/github/result/mysql/8/ifs_INNODB_VIRTUAL.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_KEYWORDS.csv b/examples/github/result/mysql/8/ifs_KEYWORDS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_KEY_COLUMN_USAGE.csv b/examples/github/result/mysql/8/ifs_KEY_COLUMN_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_OPTIMIZER_TRACE.csv b/examples/github/result/mysql/8/ifs_OPTIMIZER_TRACE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_PARAMETERS.csv b/examples/github/result/mysql/8/ifs_PARAMETERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_PARTITIONS.csv b/examples/github/result/mysql/8/ifs_PARTITIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_PLUGINS.csv b/examples/github/result/mysql/8/ifs_PLUGINS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_PROCESSLIST.csv b/examples/github/result/mysql/8/ifs_PROCESSLIST.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_PROFILING.csv b/examples/github/result/mysql/8/ifs_PROFILING.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_REFERENTIAL_CONSTRAINTS.csv b/examples/github/result/mysql/8/ifs_REFERENTIAL_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_RESOURCE_GROUPS.csv b/examples/github/result/mysql/8/ifs_RESOURCE_GROUPS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ROLE_COLUMN_GRANTS.csv b/examples/github/result/mysql/8/ifs_ROLE_COLUMN_GRANTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ROLE_ROUTINE_GRANTS.csv b/examples/github/result/mysql/8/ifs_ROLE_ROUTINE_GRANTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ROLE_TABLE_GRANTS.csv b/examples/github/result/mysql/8/ifs_ROLE_TABLE_GRANTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ROUTINES.csv b/examples/github/result/mysql/8/ifs_ROUTINES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_SCHEMATA.csv b/examples/github/result/mysql/8/ifs_SCHEMATA.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_SCHEMATA_EXTENSIONS.csv b/examples/github/result/mysql/8/ifs_SCHEMATA_EXTENSIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_SCHEMA_PRIVILEGES.csv b/examples/github/result/mysql/8/ifs_SCHEMA_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_STATISTICS.csv b/examples/github/result/mysql/8/ifs_STATISTICS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ST_GEOMETRY_COLUMNS.csv b/examples/github/result/mysql/8/ifs_ST_GEOMETRY_COLUMNS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ST_SPATIAL_REFERENCE_SYSTEMS.csv b/examples/github/result/mysql/8/ifs_ST_SPATIAL_REFERENCE_SYSTEMS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_ST_UNITS_OF_MEASURE.csv b/examples/github/result/mysql/8/ifs_ST_UNITS_OF_MEASURE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLES.csv b/examples/github/result/mysql/8/ifs_TABLES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLESPACES.csv b/examples/github/result/mysql/8/ifs_TABLESPACES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLESPACES_EXTENSIONS.csv b/examples/github/result/mysql/8/ifs_TABLESPACES_EXTENSIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLES_EXTENSIONS.csv b/examples/github/result/mysql/8/ifs_TABLES_EXTENSIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLE_CONSTRAINTS.csv b/examples/github/result/mysql/8/ifs_TABLE_CONSTRAINTS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLE_CONSTRAINTS_EXTENSIONS.csv b/examples/github/result/mysql/8/ifs_TABLE_CONSTRAINTS_EXTENSIONS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TABLE_PRIVILEGES.csv b/examples/github/result/mysql/8/ifs_TABLE_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_TRIGGERS.csv b/examples/github/result/mysql/8/ifs_TRIGGERS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_USER_ATTRIBUTES.csv b/examples/github/result/mysql/8/ifs_USER_ATTRIBUTES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_USER_PRIVILEGES.csv b/examples/github/result/mysql/8/ifs_USER_PRIVILEGES.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_VIEWS.csv b/examples/github/result/mysql/8/ifs_VIEWS.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_VIEW_ROUTINE_USAGE.csv b/examples/github/result/mysql/8/ifs_VIEW_ROUTINE_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/ifs_VIEW_TABLE_USAGE.csv b/examples/github/result/mysql/8/ifs_VIEW_TABLE_USAGE.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary.csv b/examples/github/result/mysql/8/pfs_host_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary_by_file_io.csv b/examples/github/result/mysql/8/pfs_host_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary_by_file_io_type.csv b/examples/github/result/mysql/8/pfs_host_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary_by_stages.csv b/examples/github/result/mysql/8/pfs_host_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary_by_statement_latency.csv b/examples/github/result/mysql/8/pfs_host_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_host_summary_by_statement_type.csv b/examples/github/result/mysql/8/pfs_host_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_innodb_buffer_stats_by_schema.csv b/examples/github/result/mysql/8/pfs_innodb_buffer_stats_by_schema.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_innodb_buffer_stats_by_table.csv b/examples/github/result/mysql/8/pfs_innodb_buffer_stats_by_table.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_innodb_lock_waits.csv b/examples/github/result/mysql/8/pfs_innodb_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_io_by_thread_by_latency.csv b/examples/github/result/mysql/8/pfs_io_by_thread_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_io_global_by_file_by_bytes.csv b/examples/github/result/mysql/8/pfs_io_global_by_file_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_io_global_by_file_by_latency.csv b/examples/github/result/mysql/8/pfs_io_global_by_file_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_io_global_by_wait_by_bytes.csv b/examples/github/result/mysql/8/pfs_io_global_by_wait_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_io_global_by_wait_by_latency.csv b/examples/github/result/mysql/8/pfs_io_global_by_wait_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_latest_file_io.csv b/examples/github/result/mysql/8/pfs_latest_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_memory_by_host_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_memory_by_host_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_memory_by_thread_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_memory_by_thread_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_memory_by_user_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_memory_by_user_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_memory_global_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_memory_global_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_memory_global_total.csv b/examples/github/result/mysql/8/pfs_memory_global_total.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_metrics.csv b/examples/github/result/mysql/8/pfs_metrics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_processlist.csv b/examples/github/result/mysql/8/pfs_processlist.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_ps_check_lost_instrumentation.csv b/examples/github/result/mysql/8/pfs_ps_check_lost_instrumentation.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_auto_increment_columns.csv b/examples/github/result/mysql/8/pfs_schema_auto_increment_columns.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_index_statistics.csv b/examples/github/result/mysql/8/pfs_schema_index_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_object_overview.csv b/examples/github/result/mysql/8/pfs_schema_object_overview.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_redundant_indexes.csv b/examples/github/result/mysql/8/pfs_schema_redundant_indexes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_table_lock_waits.csv b/examples/github/result/mysql/8/pfs_schema_table_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_table_statistics.csv b/examples/github/result/mysql/8/pfs_schema_table_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_table_statistics_with_buffer.csv b/examples/github/result/mysql/8/pfs_schema_table_statistics_with_buffer.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_tables_with_full_table_scans.csv b/examples/github/result/mysql/8/pfs_schema_tables_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_schema_unused_indexes.csv b/examples/github/result/mysql/8/pfs_schema_unused_indexes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_session.csv b/examples/github/result/mysql/8/pfs_session.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_session_ssl_status.csv b/examples/github/result/mysql/8/pfs_session_ssl_status.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statement_analysis.csv b/examples/github/result/mysql/8/pfs_statement_analysis.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statements_with_errors_or_warnings.csv b/examples/github/result/mysql/8/pfs_statements_with_errors_or_warnings.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statements_with_full_table_scans.csv b/examples/github/result/mysql/8/pfs_statements_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statements_with_runtimes_in_95th_percentile.csv b/examples/github/result/mysql/8/pfs_statements_with_runtimes_in_95th_percentile.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statements_with_sorting.csv b/examples/github/result/mysql/8/pfs_statements_with_sorting.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_statements_with_temp_tables.csv b/examples/github/result/mysql/8/pfs_statements_with_temp_tables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_sys_config.csv b/examples/github/result/mysql/8/pfs_sys_config.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary.csv b/examples/github/result/mysql/8/pfs_user_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary_by_file_io.csv b/examples/github/result/mysql/8/pfs_user_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary_by_file_io_type.csv b/examples/github/result/mysql/8/pfs_user_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary_by_stages.csv b/examples/github/result/mysql/8/pfs_user_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary_by_statement_latency.csv b/examples/github/result/mysql/8/pfs_user_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_user_summary_by_statement_type.csv b/examples/github/result/mysql/8/pfs_user_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_version.csv b/examples/github/result/mysql/8/pfs_version.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_wait_classes_global_by_avg_latency.csv b/examples/github/result/mysql/8/pfs_wait_classes_global_by_avg_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_wait_classes_global_by_latency.csv b/examples/github/result/mysql/8/pfs_wait_classes_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_waits_by_host_by_latency.csv b/examples/github/result/mysql/8/pfs_waits_by_host_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_waits_by_user_by_latency.csv b/examples/github/result/mysql/8/pfs_waits_by_user_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_waits_global_by_latency.csv b/examples/github/result/mysql/8/pfs_waits_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary.csv b/examples/github/result/mysql/8/pfs_x$host_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary_by_file_io.csv b/examples/github/result/mysql/8/pfs_x$host_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary_by_file_io_type.csv b/examples/github/result/mysql/8/pfs_x$host_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary_by_stages.csv b/examples/github/result/mysql/8/pfs_x$host_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary_by_statement_latency.csv b/examples/github/result/mysql/8/pfs_x$host_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$host_summary_by_statement_type.csv b/examples/github/result/mysql/8/pfs_x$host_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$innodb_buffer_stats_by_schema.csv b/examples/github/result/mysql/8/pfs_x$innodb_buffer_stats_by_schema.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$innodb_buffer_stats_by_table.csv b/examples/github/result/mysql/8/pfs_x$innodb_buffer_stats_by_table.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$innodb_lock_waits.csv b/examples/github/result/mysql/8/pfs_x$innodb_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$io_by_thread_by_latency.csv b/examples/github/result/mysql/8/pfs_x$io_by_thread_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$io_global_by_file_by_bytes.csv b/examples/github/result/mysql/8/pfs_x$io_global_by_file_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$io_global_by_file_by_latency.csv b/examples/github/result/mysql/8/pfs_x$io_global_by_file_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$io_global_by_wait_by_bytes.csv b/examples/github/result/mysql/8/pfs_x$io_global_by_wait_by_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$io_global_by_wait_by_latency.csv b/examples/github/result/mysql/8/pfs_x$io_global_by_wait_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$latest_file_io.csv b/examples/github/result/mysql/8/pfs_x$latest_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$memory_by_host_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_x$memory_by_host_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$memory_by_thread_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_x$memory_by_thread_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$memory_by_user_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_x$memory_by_user_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$memory_global_by_current_bytes.csv b/examples/github/result/mysql/8/pfs_x$memory_global_by_current_bytes.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$memory_global_total.csv b/examples/github/result/mysql/8/pfs_x$memory_global_total.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$processlist.csv b/examples/github/result/mysql/8/pfs_x$processlist.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$ps_digest_95th_percentile_by_avg_us.csv b/examples/github/result/mysql/8/pfs_x$ps_digest_95th_percentile_by_avg_us.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$ps_digest_avg_latency_distribution.csv b/examples/github/result/mysql/8/pfs_x$ps_digest_avg_latency_distribution.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$ps_schema_table_statistics_io.csv b/examples/github/result/mysql/8/pfs_x$ps_schema_table_statistics_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_flattened_keys.csv b/examples/github/result/mysql/8/pfs_x$schema_flattened_keys.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_index_statistics.csv b/examples/github/result/mysql/8/pfs_x$schema_index_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_table_lock_waits.csv b/examples/github/result/mysql/8/pfs_x$schema_table_lock_waits.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_table_statistics.csv b/examples/github/result/mysql/8/pfs_x$schema_table_statistics.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_table_statistics_with_buffer.csv b/examples/github/result/mysql/8/pfs_x$schema_table_statistics_with_buffer.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$schema_tables_with_full_table_scans.csv b/examples/github/result/mysql/8/pfs_x$schema_tables_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$session.csv b/examples/github/result/mysql/8/pfs_x$session.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statement_analysis.csv b/examples/github/result/mysql/8/pfs_x$statement_analysis.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statements_with_errors_or_warnings.csv b/examples/github/result/mysql/8/pfs_x$statements_with_errors_or_warnings.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statements_with_full_table_scans.csv b/examples/github/result/mysql/8/pfs_x$statements_with_full_table_scans.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statements_with_runtimes_in_95th_percentile.csv b/examples/github/result/mysql/8/pfs_x$statements_with_runtimes_in_95th_percentile.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statements_with_sorting.csv b/examples/github/result/mysql/8/pfs_x$statements_with_sorting.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$statements_with_temp_tables.csv b/examples/github/result/mysql/8/pfs_x$statements_with_temp_tables.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary.csv b/examples/github/result/mysql/8/pfs_x$user_summary.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary_by_file_io.csv b/examples/github/result/mysql/8/pfs_x$user_summary_by_file_io.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary_by_file_io_type.csv b/examples/github/result/mysql/8/pfs_x$user_summary_by_file_io_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary_by_stages.csv b/examples/github/result/mysql/8/pfs_x$user_summary_by_stages.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary_by_statement_latency.csv b/examples/github/result/mysql/8/pfs_x$user_summary_by_statement_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$user_summary_by_statement_type.csv b/examples/github/result/mysql/8/pfs_x$user_summary_by_statement_type.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$wait_classes_global_by_avg_latency.csv b/examples/github/result/mysql/8/pfs_x$wait_classes_global_by_avg_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$wait_classes_global_by_latency.csv b/examples/github/result/mysql/8/pfs_x$wait_classes_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$waits_by_host_by_latency.csv b/examples/github/result/mysql/8/pfs_x$waits_by_host_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$waits_by_user_by_latency.csv b/examples/github/result/mysql/8/pfs_x$waits_by_user_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/pfs_x$waits_global_by_latency.csv b/examples/github/result/mysql/8/pfs_x$waits_global_by_latency.csv old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/result.json b/examples/github/result/mysql/8/result.json old mode 100644 new mode 100755 diff --git a/examples/github/result/mysql/8/result.txt b/examples/github/result/mysql/8/result.txt old mode 100644 new mode 100755 diff --git a/mtlogo.png b/mtlogo.png old mode 100644 new mode 100755 diff --git a/mysqltuner.pl b/mysqltuner.pl old mode 100644 new mode 100755 diff --git a/mysqltuner.png b/mysqltuner.png old mode 100644 new mode 100755 diff --git a/renovate.json b/renovate.json old mode 100644 new mode 100755 diff --git a/template_example.tpl b/template_example.tpl old mode 100644 new mode 100755 diff --git a/templates/basic.html.j2 b/templates/basic.html.j2 old mode 100644 new mode 100755