Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port schema to MySQL 5.7 / MariaDB 10.2 #203

Merged
merged 3 commits into from
Jul 19, 2024
Merged

Port schema to MySQL 5.7 / MariaDB 10.2 #203

merged 3 commits into from
Jul 19, 2024

Commits on Jul 15, 2024

  1. Schema: limit text columns used in keys

    Otherwise it's impossible to create an equivalent schema in MySQL.
    MySQL requires its keys to have a length.
    Al2Klimov committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    c67ed39 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. Configuration menu
    Copy the full SHA
    642cf6a View commit details
    Browse the repository at this point in the history
  2. Don't run tests with database in parallel.

    By default, multiple packages may be tested in parallel in different processes.
    Passing -p 1 reduces this to one process to prevent test cases in different
    packages from accessing the same database. Note that t.Parallel() only affects
    parallelism within one process, i.e.  within the tests of one package.
    
    Co-authored-by: Alvar Penning <alvar.penning@icinga.com>
    2 people authored and Al2Klimov committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    20717c4 View commit details
    Browse the repository at this point in the history