├── .gitignore ├── PR └── PRstat.html ├── README.md ├── anel ├── .gdbinit ├── .tmux-faustin.conf ├── .tmux.conf ├── data.txt ├── docker-files │ ├── anel-nodejs-ubuntu-2004.dockerfile │ ├── create-docker-files.md │ ├── ecofiles │ │ └── test-nodejs.sh │ ├── file-key-management │ │ ├── README.md │ │ ├── config │ │ │ └── my.cnf │ │ └── test.sh │ ├── mariadb_connect.dockerfile │ ├── nodejs-docker.dockerfile │ └── replication-example │ │ ├── config-files │ │ ├── primarycnf │ │ │ └── primary.cnf │ │ ├── secondary-1 │ │ │ └── secondary-1.cnf │ │ └── secondary-2 │ │ │ └── secondary-2.cnf │ │ ├── primaryinit │ │ └── primaryinit.sql │ │ ├── result.txt │ │ ├── secondaryinit │ │ └── replinit.sql │ │ └── test.sh ├── jdbc_connect_blog │ ├── Dockerfile │ ├── docker-compose.yaml │ ├── mariadb_data │ │ └── data.sql │ ├── mysql_data │ │ └── data.sql │ ├── target_conf │ │ └── target.cnf │ └── target_data │ │ └── data.sql ├── k8s │ └── mariadb │ │ ├── integrated-mariadb-deployment-with-phpmyadmin.yaml │ │ ├── mariadb-configmap.yaml │ │ ├── mariadb-deployment-from-secret.yaml │ │ ├── mariadb-deployment-pvc.yaml │ │ ├── mariadb-deployment-with-phpmyadmin.yaml │ │ ├── mariadb-deployment.yaml │ │ ├── mariadb-secret.yaml │ │ ├── mariadb-service.yaml │ │ ├── mariadb-sts-plugins-with-config-map.yaml │ │ ├── mariadb-sts-plugins-with-init-containers.yaml │ │ ├── mariadb-sts-replication-with-dump.yaml │ │ ├── mariadb-sts-replication.yaml │ │ ├── mariadb-sts.yaml │ │ └── wordpress-deployment-pvc.yaml ├── odbc_driver │ ├── MariaDB_odbc_data_source_template-root.ini │ ├── MariaDB_odbc_data_source_template.ini │ ├── MariaDB_odbc_driver_template.ini │ └── ubuntu18-package ├── releases.json ├── scrapp_json_2.7.py ├── shell_scripts │ ├── dependencies_for_debian.md │ └── pid_namespace │ │ ├── README.md │ │ ├── results.txt │ │ └── testpidnamespace.sh └── zulip_scrap_blogs.py ├── announce_email └── announce_template ├── daniel ├── MDEV-19210 │ ├── Dockerfile │ ├── README.md │ ├── bb-11.4-pr2726-MDEV-19210-environment-file-pkgtest-latest-amd64-rhel-8-rpm-autobake.repo │ ├── compose.yml │ ├── deb │ │ ├── Dockerfile │ │ ├── compose.yml │ │ └── mariadb.cnf │ ├── mariadb-4.x-latest-gal-amd64-rhel-8.repo │ └── mariadb.cnf ├── broken_active_active_replication │ ├── README.txt │ ├── changing.sh │ ├── docker-compose.yml │ └── init_db │ │ ├── 01_tables.sql │ │ └── 05_replia.sql ├── galera-sst-test │ ├── .docker-compose.yml.swp │ ├── Dockerfile │ ├── docker-compose.yml │ └── wsrep_sst_mariabackup └── spider │ ├── Dockerfile │ ├── Dockerfile.generator │ ├── docker-compose.yml │ ├── generator.sh │ ├── init │ └── init_srv.sh │ └── web │ ├── Dockerfile │ ├── app.py │ └── requirements.txt ├── dbt3_benchmark ├── config │ ├── results_mariadb_my.cnf │ ├── s1 │ │ ├── mariadb_innodb_my.cnf │ │ ├── mariadb_innodb_no_optimizations_my.cnf │ │ ├── mariadb_myisam_my.cnf │ │ └── mariadb_myisam_no_optimizations_my.cnf │ ├── s10 │ │ ├── load_mysql_innodb_my.cnf │ │ ├── load_mysql_myisam_my.cnf │ │ ├── mariadb_innodb_my.cnf │ │ ├── mariadb_innodb_no_optimizations_my.cnf │ │ ├── mariadb_myisam_my.cnf │ │ ├── mariadb_myisam_my_icp.cnf │ │ ├── mariadb_myisam_no_optimizations_my.cnf │ │ ├── mysql_5_5_innodb_my.cnf │ │ ├── mysql_5_5_myisam_my.cnf │ │ ├── mysql_5_6_innodb_my.cnf │ │ ├── mysql_5_6_myisam_my.cnf │ │ └── postgresql.conf │ └── s30 │ │ ├── load_mysql_innodb_my.cnf │ │ ├── load_mysql_myisam_my.cnf │ │ ├── mariadb_innodb_my.cnf │ │ ├── mariadb_myisam_my.cnf │ │ ├── mysql_5_5_innodb_my.cnf │ │ ├── mysql_5_5_myisam_my.cnf │ │ ├── mysql_5_6_innodb_my.cnf │ │ ├── mysql_5_6_myisam_my.cnf │ │ └── postgresql.conf ├── dbt3_mysql │ ├── Makefile │ ├── README.txt │ ├── flush.c │ ├── flush_io_caches │ ├── make-dbt3-db_pg.sql │ ├── make-dbt3-db_post_create_PK.sql │ ├── make-dbt3-db_pre_create_PK.sql │ ├── make-results-db.sql │ ├── mysql_queries │ │ ├── 1.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 14.sql │ │ ├── 15.sql │ │ ├── 16.sql │ │ ├── 17.sql │ │ ├── 18.sql │ │ ├── 19.sql │ │ ├── 2.sql │ │ ├── 20.sql │ │ ├── 21.sql │ │ ├── 22.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ ├── 5.sql │ │ ├── 6.sql │ │ ├── 7.sql │ │ ├── 8.sql │ │ ├── 9.sql │ │ └── dists.dss │ └── tpcd.h ├── launcher.pl └── tests │ ├── db_conf │ ├── db_mariadb_5_3_innodb.conf │ ├── db_mariadb_5_3_innodb_igor.conf │ ├── db_mariadb_5_3_myisam.conf │ ├── db_mariadb_5_3_myisam_icp.conf │ ├── db_mariadb_5_3_myisam_igor.conf │ ├── db_mariadb_5_5_innodb.conf │ ├── db_mariadb_5_5_myisam.conf │ ├── db_mariadb_5_5_myisam_icp.conf │ ├── db_mariadb_5_5_myisam_igor.conf │ ├── db_mysql_5_5_innodb.conf │ ├── db_mysql_5_5_myisam.conf │ ├── db_mysql_5_6_innodb.conf │ ├── db_mysql_5_6_myisam.conf │ └── postgres_9_1.conf │ ├── innodb_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf │ ├── myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf │ ├── myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6_17_19_20.conf │ ├── myisam_test_q20.conf │ ├── queries_conf │ ├── q20.conf │ ├── queries-mariadb.conf │ ├── queries-mariadb_17_19_20.conf │ ├── queries-mariadb_igor_hdd_s30.conf │ ├── queries-mariadb_igor_ssd_s10.conf │ ├── queries-mysql.conf │ ├── queries-mysql_17_19_20.conf │ ├── queries-mysql_igor_hdd_s30.conf │ └── queries-p.conf │ ├── results_db_conf │ └── results_db.conf │ └── test_conf │ ├── test_innodb.conf │ └── test_myisam.conf ├── docs └── building_tips_mariadb_openbsd.md ├── faust └── tools │ ├── get_subtitles │ ├── screenrecord │ └── vlcrec ├── gdb-helpers └── innodb.gdb ├── git_template ├── README └── hooks │ └── post-commit ├── merging └── show_conflicts_resolution.sh ├── metrics └── README.md ├── monitoring ├── README.txt ├── com_commit_monitor.sh ├── gnuplot_com_commit.sh └── mirmon │ ├── README.md │ ├── mariadb_mirror_list │ └── webhook │ ├── mirmon_update.sh │ └── webhook.yaml ├── mysql-5.6-merge-stuff ├── 5.6-annotated.txt ├── 56-pushlist.txt └── annotate-5.6.pl ├── release ├── bb-new-to-old ├── contributors │ ├── companies │ ├── individuals │ └── stats.sh ├── create_package_tarballs │ ├── create_package_tarballs │ ├── deb_files │ │ ├── MariaDB-C74CD1D8-public.asc │ │ ├── MariaDB-C74CD1D8-public.gpg │ │ ├── README │ │ └── setup_repository │ ├── rhel_files │ │ ├── MariaDB-Server-GPG-KEY │ │ ├── README │ │ └── setup_repository │ └── sles_files │ │ ├── README │ │ └── setup_repository ├── galera-new ├── gen-updateinfo.sh ├── github-release-template ├── install-createrepo.sh ├── mkrepo-debian.sh ├── mkrepo-ubuntu.sh ├── mkrepo-yum.sh ├── prep ├── prep-bundles ├── prep-c ├── prep-changelog ├── prep-galera ├── prep-java ├── prep-nodejs ├── prep-odbc ├── prep-shared-rpms └── prep-tools ├── reporting ├── MDBF_Statistics.ipynb ├── README.md ├── data │ ├── alltime_commits.csv │ ├── alltime_github.csv │ ├── lastyear_commits.csv │ ├── lastyear_github.csv │ └── pr_backlog │ │ ├── 2014_pr_backlog.csv │ │ ├── 2015_pr_backlog.csv │ │ ├── 2016_pr_backlog.csv │ │ ├── 2017_pr_backlog.csv │ │ ├── 2018_pr_backlog.csv │ │ ├── 2019_pr_backlog.csv │ │ └── 2020_pr_backlog.csv ├── kaj_gets_open_prs_until_date.py ├── process_github_activity.py └── process_gitlog_csv.py ├── robert └── sighup_test.sh ├── sanja ├── backup_git_dirs.sh ├── git_mariadb_test.sh ├── gitcl ├── gitt ├── mmake └── restore_git_dir.sh ├── serg ├── README.md ├── bookmarklets.html ├── dbug-relative-times.pl ├── gdb.py ├── gdbinit ├── mtr-bash-completion.sh ├── mtr-log-pp ├── mtr-rejects ├── run_gdb ├── there be dragons │ ├── README │ └── git_bzr_recover_marks.pl ├── thou_shalt_not_kill.pm └── y.output-to-html ├── sql-bench-mysql ├── O2 │ ├── base.sqlbt │ ├── compiler_lu0012.cnf │ └── compiler_pitbull.cnf ├── README.txt ├── basic │ ├── base.sqlbt │ ├── compiler_au0013.cnf │ ├── compiler_lu0012.cnf │ ├── compiler_pitbull.cnf │ ├── grant-column.sqlbt │ ├── grant-db.sqlbt │ ├── grant.sqlbt │ ├── innodb.sqlbt │ ├── memory.sqlbt │ ├── myisam.sqlbt │ ├── profiling.sqlbt │ └── tcpip.sqlbt ├── conf │ ├── au0013.cnf │ ├── lu0012.cnf │ ├── perro.cnf │ └── pitbull.cnf ├── debug-full │ ├── base.sqlbt │ ├── compiler_lu0012.cnf │ ├── compiler_pitbull.cnf │ └── skip-safemalloc.sqlbt ├── debug │ ├── base.sqlbt │ ├── compiler_au0013.cnf │ ├── compiler_lu0012.cnf │ └── compiler_pitbull.cnf └── run-sql-bench.pl ├── sql-bench ├── O2 │ ├── base.sqlbt │ ├── compiler_lu0012.cnf │ └── compiler_pitbull.cnf ├── README.txt ├── basic │ ├── aria-notrans.sqlbt │ ├── aria-trans-check.sqlbt │ ├── aria-trans.sqlbt │ ├── base.sqlbt │ ├── compiler_au0013.cnf │ ├── compiler_lu0012.cnf │ ├── compiler_pitbull.cnf │ ├── grant-column.sqlbt │ ├── grant-db.sqlbt │ ├── grant.sqlbt │ ├── innodb.sqlbt │ ├── key-cache-segments.sqlbt │ ├── memory.sqlbt │ ├── myisam.sqlbt │ ├── pbxt.sqlbt │ ├── profiling.sqlbt │ ├── tcpip.sqlbt │ └── userstat.sqlbt ├── conf │ ├── au0013.cnf │ ├── lu0012.cnf │ ├── perro.cnf │ └── pitbull.cnf ├── debug-full │ ├── base.sqlbt │ ├── compiler_lu0012.cnf │ ├── compiler_pitbull.cnf │ ├── skip-mutex-deadlock-detector.sqlbt │ └── skip-safemalloc.sqlbt ├── debug │ ├── base.sqlbt │ ├── compiler_au0013.cnf │ ├── compiler_lu0012.cnf │ └── compiler_pitbull.cnf └── run-sql-bench.pl ├── sysbench-runner ├── bench_script.pl ├── common.lua ├── config │ ├── mariadb_5_2_innodb_fb2_my.cnf │ ├── mariadb_innodb_fb2_my.cnf │ ├── mariadb_my.cnf │ ├── mysql_innodb_fb2_my.cnf │ ├── mysql_my.cnf │ └── pitbull_my.cnf ├── oltp_aria.lua ├── perl_launcher.pl └── tests │ ├── HDD_SSD.pm │ ├── HDD_SSD_readonly.pm │ ├── InnoDB_XtraDB_PBXT.pm │ ├── InnoDB_XtraDB_PBXT_readonly.pm │ ├── MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB.pm │ ├── MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB_gprof.pm │ ├── MyISAM_Aria.pm │ ├── MyISAM_Aria_key_cache_segments_16.pm │ ├── MyISAM_Aria_readonly.pm │ └── prepare_dbs.pm ├── sysbench ├── README ├── analyze-sysbench.php ├── conf │ ├── au0013.inc │ ├── lu0012.inc │ ├── perro.inc │ ├── pitbull.inc │ └── work.inc ├── run-sysbench-myisam.sh └── run-sysbench.sh └── upgrade-test ├── after-common.result ├── after-common.test ├── before-common.result └── before-common.test /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /PR/PRstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/PR/PRstat.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/README.md -------------------------------------------------------------------------------- /anel/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/.gdbinit -------------------------------------------------------------------------------- /anel/.tmux-faustin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/.tmux-faustin.conf -------------------------------------------------------------------------------- /anel/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/.tmux.conf -------------------------------------------------------------------------------- /anel/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/data.txt -------------------------------------------------------------------------------- /anel/docker-files/anel-nodejs-ubuntu-2004.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/anel-nodejs-ubuntu-2004.dockerfile -------------------------------------------------------------------------------- /anel/docker-files/create-docker-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/create-docker-files.md -------------------------------------------------------------------------------- /anel/docker-files/ecofiles/test-nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/ecofiles/test-nodejs.sh -------------------------------------------------------------------------------- /anel/docker-files/file-key-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/file-key-management/README.md -------------------------------------------------------------------------------- /anel/docker-files/file-key-management/config/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/file-key-management/config/my.cnf -------------------------------------------------------------------------------- /anel/docker-files/file-key-management/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/file-key-management/test.sh -------------------------------------------------------------------------------- /anel/docker-files/mariadb_connect.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/mariadb_connect.dockerfile -------------------------------------------------------------------------------- /anel/docker-files/nodejs-docker.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/nodejs-docker.dockerfile -------------------------------------------------------------------------------- /anel/docker-files/replication-example/config-files/primarycnf/primary.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/config-files/primarycnf/primary.cnf -------------------------------------------------------------------------------- /anel/docker-files/replication-example/config-files/secondary-1/secondary-1.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/config-files/secondary-1/secondary-1.cnf -------------------------------------------------------------------------------- /anel/docker-files/replication-example/config-files/secondary-2/secondary-2.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/config-files/secondary-2/secondary-2.cnf -------------------------------------------------------------------------------- /anel/docker-files/replication-example/primaryinit/primaryinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/primaryinit/primaryinit.sql -------------------------------------------------------------------------------- /anel/docker-files/replication-example/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/result.txt -------------------------------------------------------------------------------- /anel/docker-files/replication-example/secondaryinit/replinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/secondaryinit/replinit.sql -------------------------------------------------------------------------------- /anel/docker-files/replication-example/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/docker-files/replication-example/test.sh -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/Dockerfile -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/docker-compose.yaml -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/mariadb_data/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/mariadb_data/data.sql -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/mysql_data/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/mysql_data/data.sql -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/target_conf/target.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/target_conf/target.cnf -------------------------------------------------------------------------------- /anel/jdbc_connect_blog/target_data/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/jdbc_connect_blog/target_data/data.sql -------------------------------------------------------------------------------- /anel/k8s/mariadb/integrated-mariadb-deployment-with-phpmyadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/integrated-mariadb-deployment-with-phpmyadmin.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-configmap.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-deployment-from-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-deployment-from-secret.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-deployment-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-deployment-pvc.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-deployment-with-phpmyadmin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-deployment-with-phpmyadmin.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-deployment.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-secret.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-service.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-sts-plugins-with-config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-sts-plugins-with-config-map.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-sts-plugins-with-init-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-sts-plugins-with-init-containers.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-sts-replication-with-dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-sts-replication-with-dump.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-sts-replication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-sts-replication.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/mariadb-sts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/mariadb-sts.yaml -------------------------------------------------------------------------------- /anel/k8s/mariadb/wordpress-deployment-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/k8s/mariadb/wordpress-deployment-pvc.yaml -------------------------------------------------------------------------------- /anel/odbc_driver/MariaDB_odbc_data_source_template-root.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/odbc_driver/MariaDB_odbc_data_source_template-root.ini -------------------------------------------------------------------------------- /anel/odbc_driver/MariaDB_odbc_data_source_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/odbc_driver/MariaDB_odbc_data_source_template.ini -------------------------------------------------------------------------------- /anel/odbc_driver/MariaDB_odbc_driver_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/odbc_driver/MariaDB_odbc_driver_template.ini -------------------------------------------------------------------------------- /anel/odbc_driver/ubuntu18-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/odbc_driver/ubuntu18-package -------------------------------------------------------------------------------- /anel/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/releases.json -------------------------------------------------------------------------------- /anel/scrapp_json_2.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/scrapp_json_2.7.py -------------------------------------------------------------------------------- /anel/shell_scripts/dependencies_for_debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/shell_scripts/dependencies_for_debian.md -------------------------------------------------------------------------------- /anel/shell_scripts/pid_namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/shell_scripts/pid_namespace/README.md -------------------------------------------------------------------------------- /anel/shell_scripts/pid_namespace/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/shell_scripts/pid_namespace/results.txt -------------------------------------------------------------------------------- /anel/shell_scripts/pid_namespace/testpidnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/shell_scripts/pid_namespace/testpidnamespace.sh -------------------------------------------------------------------------------- /anel/zulip_scrap_blogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/anel/zulip_scrap_blogs.py -------------------------------------------------------------------------------- /announce_email/announce_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/announce_email/announce_template -------------------------------------------------------------------------------- /daniel/MDEV-19210/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/Dockerfile -------------------------------------------------------------------------------- /daniel/MDEV-19210/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/README.md -------------------------------------------------------------------------------- /daniel/MDEV-19210/bb-11.4-pr2726-MDEV-19210-environment-file-pkgtest-latest-amd64-rhel-8-rpm-autobake.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/bb-11.4-pr2726-MDEV-19210-environment-file-pkgtest-latest-amd64-rhel-8-rpm-autobake.repo -------------------------------------------------------------------------------- /daniel/MDEV-19210/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/compose.yml -------------------------------------------------------------------------------- /daniel/MDEV-19210/deb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/deb/Dockerfile -------------------------------------------------------------------------------- /daniel/MDEV-19210/deb/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/deb/compose.yml -------------------------------------------------------------------------------- /daniel/MDEV-19210/deb/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/deb/mariadb.cnf -------------------------------------------------------------------------------- /daniel/MDEV-19210/mariadb-4.x-latest-gal-amd64-rhel-8.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/mariadb-4.x-latest-gal-amd64-rhel-8.repo -------------------------------------------------------------------------------- /daniel/MDEV-19210/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/MDEV-19210/mariadb.cnf -------------------------------------------------------------------------------- /daniel/broken_active_active_replication/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/broken_active_active_replication/README.txt -------------------------------------------------------------------------------- /daniel/broken_active_active_replication/changing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/broken_active_active_replication/changing.sh -------------------------------------------------------------------------------- /daniel/broken_active_active_replication/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/broken_active_active_replication/docker-compose.yml -------------------------------------------------------------------------------- /daniel/broken_active_active_replication/init_db/01_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/broken_active_active_replication/init_db/01_tables.sql -------------------------------------------------------------------------------- /daniel/broken_active_active_replication/init_db/05_replia.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/broken_active_active_replication/init_db/05_replia.sql -------------------------------------------------------------------------------- /daniel/galera-sst-test/.docker-compose.yml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/galera-sst-test/.docker-compose.yml.swp -------------------------------------------------------------------------------- /daniel/galera-sst-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/galera-sst-test/Dockerfile -------------------------------------------------------------------------------- /daniel/galera-sst-test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/galera-sst-test/docker-compose.yml -------------------------------------------------------------------------------- /daniel/galera-sst-test/wsrep_sst_mariabackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/galera-sst-test/wsrep_sst_mariabackup -------------------------------------------------------------------------------- /daniel/spider/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/Dockerfile -------------------------------------------------------------------------------- /daniel/spider/Dockerfile.generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/Dockerfile.generator -------------------------------------------------------------------------------- /daniel/spider/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/docker-compose.yml -------------------------------------------------------------------------------- /daniel/spider/generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/generator.sh -------------------------------------------------------------------------------- /daniel/spider/init/init_srv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/init/init_srv.sh -------------------------------------------------------------------------------- /daniel/spider/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/web/Dockerfile -------------------------------------------------------------------------------- /daniel/spider/web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/daniel/spider/web/app.py -------------------------------------------------------------------------------- /daniel/spider/web/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | mariadb 3 | gunicorn 4 | -------------------------------------------------------------------------------- /dbt3_benchmark/config/results_mariadb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/results_mariadb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s1/mariadb_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s1/mariadb_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s1/mariadb_innodb_no_optimizations_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s1/mariadb_innodb_no_optimizations_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s1/mariadb_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s1/mariadb_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s1/mariadb_myisam_no_optimizations_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s1/mariadb_myisam_no_optimizations_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/load_mysql_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/load_mysql_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/load_mysql_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/load_mysql_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mariadb_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mariadb_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mariadb_innodb_no_optimizations_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mariadb_innodb_no_optimizations_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mariadb_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mariadb_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mariadb_myisam_my_icp.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mariadb_myisam_my_icp.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mariadb_myisam_no_optimizations_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mariadb_myisam_no_optimizations_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mysql_5_5_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mysql_5_5_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mysql_5_5_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mysql_5_5_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mysql_5_6_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mysql_5_6_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/mysql_5_6_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/mysql_5_6_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s10/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s10/postgresql.conf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/load_mysql_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/load_mysql_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/load_mysql_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/load_mysql_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mariadb_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mariadb_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mariadb_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mariadb_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mysql_5_5_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mysql_5_5_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mysql_5_5_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mysql_5_5_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mysql_5_6_innodb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mysql_5_6_innodb_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/mysql_5_6_myisam_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/mysql_5_6_myisam_my.cnf -------------------------------------------------------------------------------- /dbt3_benchmark/config/s30/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/config/s30/postgresql.conf -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/Makefile -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/README.txt -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/flush.c -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/flush_io_caches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/flush_io_caches -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/make-dbt3-db_pg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/make-dbt3-db_pg.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/make-dbt3-db_post_create_PK.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/make-dbt3-db_post_create_PK.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/make-dbt3-db_pre_create_PK.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/make-dbt3-db_pre_create_PK.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/make-results-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/make-results-db.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/1.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/10.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/11.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/12.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/13.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/14.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/15.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/16.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/17.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/18.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/19.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/2.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/20.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/21.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/22.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/3.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/4.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/5.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/6.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/7.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/8.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/9.sql -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/mysql_queries/dists.dss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/mysql_queries/dists.dss -------------------------------------------------------------------------------- /dbt3_benchmark/dbt3_mysql/tpcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/dbt3_mysql/tpcd.h -------------------------------------------------------------------------------- /dbt3_benchmark/launcher.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/launcher.pl -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_3_innodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_3_innodb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_3_innodb_igor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_3_innodb_igor.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam_icp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam_icp.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam_igor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_3_myisam_igor.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_5_innodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_5_innodb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam_icp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam_icp.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam_igor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mariadb_5_5_myisam_igor.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mysql_5_5_innodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mysql_5_5_innodb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mysql_5_5_myisam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mysql_5_5_myisam.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mysql_5_6_innodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mysql_5_6_innodb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/db_mysql_5_6_myisam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/db_mysql_5_6_myisam.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/db_conf/postgres_9_1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/db_conf/postgres_9_1.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/innodb_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/innodb_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6_17_19_20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/myisam_test_mariadb_5_3_mysql_5_5_mysql_5_6_17_19_20.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/myisam_test_q20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/myisam_test_q20.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/q20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/q20.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mariadb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mariadb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mariadb_17_19_20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mariadb_17_19_20.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mariadb_igor_hdd_s30.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mariadb_igor_hdd_s30.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mariadb_igor_ssd_s10.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mariadb_igor_ssd_s10.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mysql.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mysql_17_19_20.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mysql_17_19_20.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-mysql_igor_hdd_s30.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-mysql_igor_hdd_s30.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/queries_conf/queries-p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/queries_conf/queries-p.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/results_db_conf/results_db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/results_db_conf/results_db.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/test_conf/test_innodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/test_conf/test_innodb.conf -------------------------------------------------------------------------------- /dbt3_benchmark/tests/test_conf/test_myisam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/dbt3_benchmark/tests/test_conf/test_myisam.conf -------------------------------------------------------------------------------- /docs/building_tips_mariadb_openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/docs/building_tips_mariadb_openbsd.md -------------------------------------------------------------------------------- /faust/tools/get_subtitles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/faust/tools/get_subtitles -------------------------------------------------------------------------------- /faust/tools/screenrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/faust/tools/screenrecord -------------------------------------------------------------------------------- /faust/tools/vlcrec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/faust/tools/vlcrec -------------------------------------------------------------------------------- /gdb-helpers/innodb.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/gdb-helpers/innodb.gdb -------------------------------------------------------------------------------- /git_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/git_template/README -------------------------------------------------------------------------------- /git_template/hooks/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/git_template/hooks/post-commit -------------------------------------------------------------------------------- /merging/show_conflicts_resolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/merging/show_conflicts_resolution.sh -------------------------------------------------------------------------------- /metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/metrics/README.md -------------------------------------------------------------------------------- /monitoring/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/README.txt -------------------------------------------------------------------------------- /monitoring/com_commit_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/com_commit_monitor.sh -------------------------------------------------------------------------------- /monitoring/gnuplot_com_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/gnuplot_com_commit.sh -------------------------------------------------------------------------------- /monitoring/mirmon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/mirmon/README.md -------------------------------------------------------------------------------- /monitoring/mirmon/mariadb_mirror_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/mirmon/mariadb_mirror_list -------------------------------------------------------------------------------- /monitoring/mirmon/webhook/mirmon_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/mirmon/webhook/mirmon_update.sh -------------------------------------------------------------------------------- /monitoring/mirmon/webhook/webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/monitoring/mirmon/webhook/webhook.yaml -------------------------------------------------------------------------------- /mysql-5.6-merge-stuff/5.6-annotated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/mysql-5.6-merge-stuff/5.6-annotated.txt -------------------------------------------------------------------------------- /mysql-5.6-merge-stuff/56-pushlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/mysql-5.6-merge-stuff/56-pushlist.txt -------------------------------------------------------------------------------- /mysql-5.6-merge-stuff/annotate-5.6.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/mysql-5.6-merge-stuff/annotate-5.6.pl -------------------------------------------------------------------------------- /release/bb-new-to-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/bb-new-to-old -------------------------------------------------------------------------------- /release/contributors/companies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/contributors/companies -------------------------------------------------------------------------------- /release/contributors/individuals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/contributors/individuals -------------------------------------------------------------------------------- /release/contributors/stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/contributors/stats.sh -------------------------------------------------------------------------------- /release/create_package_tarballs/create_package_tarballs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/create_package_tarballs -------------------------------------------------------------------------------- /release/create_package_tarballs/deb_files/MariaDB-C74CD1D8-public.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/deb_files/MariaDB-C74CD1D8-public.asc -------------------------------------------------------------------------------- /release/create_package_tarballs/deb_files/MariaDB-C74CD1D8-public.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/deb_files/MariaDB-C74CD1D8-public.gpg -------------------------------------------------------------------------------- /release/create_package_tarballs/deb_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/deb_files/README -------------------------------------------------------------------------------- /release/create_package_tarballs/deb_files/setup_repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/deb_files/setup_repository -------------------------------------------------------------------------------- /release/create_package_tarballs/rhel_files/MariaDB-Server-GPG-KEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/rhel_files/MariaDB-Server-GPG-KEY -------------------------------------------------------------------------------- /release/create_package_tarballs/rhel_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/rhel_files/README -------------------------------------------------------------------------------- /release/create_package_tarballs/rhel_files/setup_repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/rhel_files/setup_repository -------------------------------------------------------------------------------- /release/create_package_tarballs/sles_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/sles_files/README -------------------------------------------------------------------------------- /release/create_package_tarballs/sles_files/setup_repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/create_package_tarballs/sles_files/setup_repository -------------------------------------------------------------------------------- /release/galera-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/galera-new -------------------------------------------------------------------------------- /release/gen-updateinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/gen-updateinfo.sh -------------------------------------------------------------------------------- /release/github-release-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/github-release-template -------------------------------------------------------------------------------- /release/install-createrepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/install-createrepo.sh -------------------------------------------------------------------------------- /release/mkrepo-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/mkrepo-debian.sh -------------------------------------------------------------------------------- /release/mkrepo-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/mkrepo-ubuntu.sh -------------------------------------------------------------------------------- /release/mkrepo-yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/mkrepo-yum.sh -------------------------------------------------------------------------------- /release/prep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep -------------------------------------------------------------------------------- /release/prep-bundles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-bundles -------------------------------------------------------------------------------- /release/prep-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-c -------------------------------------------------------------------------------- /release/prep-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-changelog -------------------------------------------------------------------------------- /release/prep-galera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-galera -------------------------------------------------------------------------------- /release/prep-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-java -------------------------------------------------------------------------------- /release/prep-nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-nodejs -------------------------------------------------------------------------------- /release/prep-odbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-odbc -------------------------------------------------------------------------------- /release/prep-shared-rpms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-shared-rpms -------------------------------------------------------------------------------- /release/prep-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/release/prep-tools -------------------------------------------------------------------------------- /reporting/MDBF_Statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/MDBF_Statistics.ipynb -------------------------------------------------------------------------------- /reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/README.md -------------------------------------------------------------------------------- /reporting/data/alltime_commits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/alltime_commits.csv -------------------------------------------------------------------------------- /reporting/data/alltime_github.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/alltime_github.csv -------------------------------------------------------------------------------- /reporting/data/lastyear_commits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/lastyear_commits.csv -------------------------------------------------------------------------------- /reporting/data/lastyear_github.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/lastyear_github.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2014_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2014_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2015_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2015_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2016_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2016_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2017_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2017_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2018_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2018_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2019_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2019_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/data/pr_backlog/2020_pr_backlog.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/data/pr_backlog/2020_pr_backlog.csv -------------------------------------------------------------------------------- /reporting/kaj_gets_open_prs_until_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/kaj_gets_open_prs_until_date.py -------------------------------------------------------------------------------- /reporting/process_github_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/process_github_activity.py -------------------------------------------------------------------------------- /reporting/process_gitlog_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/reporting/process_gitlog_csv.py -------------------------------------------------------------------------------- /robert/sighup_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/robert/sighup_test.sh -------------------------------------------------------------------------------- /sanja/backup_git_dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/backup_git_dirs.sh -------------------------------------------------------------------------------- /sanja/git_mariadb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/git_mariadb_test.sh -------------------------------------------------------------------------------- /sanja/gitcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/gitcl -------------------------------------------------------------------------------- /sanja/gitt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/gitt -------------------------------------------------------------------------------- /sanja/mmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/mmake -------------------------------------------------------------------------------- /sanja/restore_git_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sanja/restore_git_dir.sh -------------------------------------------------------------------------------- /serg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/README.md -------------------------------------------------------------------------------- /serg/bookmarklets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/bookmarklets.html -------------------------------------------------------------------------------- /serg/dbug-relative-times.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/dbug-relative-times.pl -------------------------------------------------------------------------------- /serg/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/gdb.py -------------------------------------------------------------------------------- /serg/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/gdbinit -------------------------------------------------------------------------------- /serg/mtr-bash-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/mtr-bash-completion.sh -------------------------------------------------------------------------------- /serg/mtr-log-pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/mtr-log-pp -------------------------------------------------------------------------------- /serg/mtr-rejects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/mtr-rejects -------------------------------------------------------------------------------- /serg/run_gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/run_gdb -------------------------------------------------------------------------------- /serg/there be dragons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/there be dragons/README -------------------------------------------------------------------------------- /serg/there be dragons/git_bzr_recover_marks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/there be dragons/git_bzr_recover_marks.pl -------------------------------------------------------------------------------- /serg/thou_shalt_not_kill.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/thou_shalt_not_kill.pm -------------------------------------------------------------------------------- /serg/y.output-to-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/serg/y.output-to-html -------------------------------------------------------------------------------- /sql-bench-mysql/O2/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/O2/base.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/O2/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/O2/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/O2/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/O2/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/README.txt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/base.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/compiler_au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/compiler_au0013.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/basic/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/basic/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/basic/grant-column.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/grant-column.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/grant-db.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/grant-db.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/grant.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/grant.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/innodb.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/innodb.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/memory.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/memory.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/myisam.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/myisam.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/profiling.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/profiling.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/basic/tcpip.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/basic/tcpip.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/conf/au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/conf/au0013.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/conf/lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/conf/lu0012.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/conf/perro.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/conf/perro.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/conf/pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/conf/pitbull.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/debug-full/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug-full/base.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/debug-full/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug-full/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/debug-full/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug-full/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/debug-full/skip-safemalloc.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug-full/skip-safemalloc.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/debug/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug/base.sqlbt -------------------------------------------------------------------------------- /sql-bench-mysql/debug/compiler_au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug/compiler_au0013.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/debug/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/debug/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/debug/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench-mysql/run-sql-bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench-mysql/run-sql-bench.pl -------------------------------------------------------------------------------- /sql-bench/O2/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/O2/base.sqlbt -------------------------------------------------------------------------------- /sql-bench/O2/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/O2/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench/O2/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/O2/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/README.txt -------------------------------------------------------------------------------- /sql-bench/basic/aria-notrans.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/aria-notrans.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/aria-trans-check.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/aria-trans-check.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/aria-trans.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/aria-trans.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/base.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/compiler_au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/compiler_au0013.cnf -------------------------------------------------------------------------------- /sql-bench/basic/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench/basic/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench/basic/grant-column.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/grant-column.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/grant-db.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/grant-db.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/grant.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/grant.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/innodb.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/innodb.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/key-cache-segments.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/key-cache-segments.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/memory.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/memory.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/myisam.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/myisam.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/pbxt.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/pbxt.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/profiling.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/profiling.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/tcpip.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/tcpip.sqlbt -------------------------------------------------------------------------------- /sql-bench/basic/userstat.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/basic/userstat.sqlbt -------------------------------------------------------------------------------- /sql-bench/conf/au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/conf/au0013.cnf -------------------------------------------------------------------------------- /sql-bench/conf/lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/conf/lu0012.cnf -------------------------------------------------------------------------------- /sql-bench/conf/perro.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/conf/perro.cnf -------------------------------------------------------------------------------- /sql-bench/conf/pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/conf/pitbull.cnf -------------------------------------------------------------------------------- /sql-bench/debug-full/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug-full/base.sqlbt -------------------------------------------------------------------------------- /sql-bench/debug-full/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug-full/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench/debug-full/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug-full/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench/debug-full/skip-mutex-deadlock-detector.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug-full/skip-mutex-deadlock-detector.sqlbt -------------------------------------------------------------------------------- /sql-bench/debug-full/skip-safemalloc.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug-full/skip-safemalloc.sqlbt -------------------------------------------------------------------------------- /sql-bench/debug/base.sqlbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug/base.sqlbt -------------------------------------------------------------------------------- /sql-bench/debug/compiler_au0013.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug/compiler_au0013.cnf -------------------------------------------------------------------------------- /sql-bench/debug/compiler_lu0012.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug/compiler_lu0012.cnf -------------------------------------------------------------------------------- /sql-bench/debug/compiler_pitbull.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/debug/compiler_pitbull.cnf -------------------------------------------------------------------------------- /sql-bench/run-sql-bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sql-bench/run-sql-bench.pl -------------------------------------------------------------------------------- /sysbench-runner/bench_script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/bench_script.pl -------------------------------------------------------------------------------- /sysbench-runner/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/common.lua -------------------------------------------------------------------------------- /sysbench-runner/config/mariadb_5_2_innodb_fb2_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/mariadb_5_2_innodb_fb2_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/config/mariadb_innodb_fb2_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/mariadb_innodb_fb2_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/config/mariadb_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/mariadb_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/config/mysql_innodb_fb2_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/mysql_innodb_fb2_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/config/mysql_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/mysql_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/config/pitbull_my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/config/pitbull_my.cnf -------------------------------------------------------------------------------- /sysbench-runner/oltp_aria.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/oltp_aria.lua -------------------------------------------------------------------------------- /sysbench-runner/perl_launcher.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/perl_launcher.pl -------------------------------------------------------------------------------- /sysbench-runner/tests/HDD_SSD.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/HDD_SSD.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/HDD_SSD_readonly.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/HDD_SSD_readonly.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/InnoDB_XtraDB_PBXT.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/InnoDB_XtraDB_PBXT.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/InnoDB_XtraDB_PBXT_readonly.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/InnoDB_XtraDB_PBXT_readonly.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB_gprof.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/MariaDB_5_3_vs_5_5_15_vs_MySQL_5_5_InnoDB_gprof.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/MyISAM_Aria.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/MyISAM_Aria.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/MyISAM_Aria_key_cache_segments_16.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/MyISAM_Aria_key_cache_segments_16.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/MyISAM_Aria_readonly.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/MyISAM_Aria_readonly.pm -------------------------------------------------------------------------------- /sysbench-runner/tests/prepare_dbs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench-runner/tests/prepare_dbs.pm -------------------------------------------------------------------------------- /sysbench/README: -------------------------------------------------------------------------------- 1 | Automation scripts for sysbench >= v.05 2 | -------------------------------------------------------------------------------- /sysbench/analyze-sysbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/analyze-sysbench.php -------------------------------------------------------------------------------- /sysbench/conf/au0013.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/conf/au0013.inc -------------------------------------------------------------------------------- /sysbench/conf/lu0012.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/conf/lu0012.inc -------------------------------------------------------------------------------- /sysbench/conf/perro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/conf/perro.inc -------------------------------------------------------------------------------- /sysbench/conf/pitbull.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/conf/pitbull.inc -------------------------------------------------------------------------------- /sysbench/conf/work.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/conf/work.inc -------------------------------------------------------------------------------- /sysbench/run-sysbench-myisam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/run-sysbench-myisam.sh -------------------------------------------------------------------------------- /sysbench/run-sysbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/sysbench/run-sysbench.sh -------------------------------------------------------------------------------- /upgrade-test/after-common.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/upgrade-test/after-common.result -------------------------------------------------------------------------------- /upgrade-test/after-common.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/upgrade-test/after-common.test -------------------------------------------------------------------------------- /upgrade-test/before-common.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/upgrade-test/before-common.result -------------------------------------------------------------------------------- /upgrade-test/before-common.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MariaDB/mariadb.org-tools/HEAD/upgrade-test/before-common.test --------------------------------------------------------------------------------