Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces comprehensive testing and CI improvements for MariaDB and MySQL connectors in the
bridgepackage. It adds new end-to-end and cache tests for MariaDB, updates MySQL tests for consistency, and establishes a GitHub Actions workflow to run tests against seeded databases for all three supported engines (Postgres, MySQL, MariaDB).Testing enhancements for MariaDB and MySQL:
bridge/__tests__/connectors/mariadb.cache.test.ts.bridge/__tests__/connectors/mariadb.test.ts.bridge/__tests__/connectors/mysql.test.ts. [1] [2]Continuous Integration improvements:
.github/workflows/test.ymlthat sets up and seeds Postgres, MySQL, and MariaDB containers, and runs the full test suite against all three engines.Minor test and code hygiene updates:
console.logstatements from MySQL cache performance tests for cleaner output inbridge/__tests__/connectors/mysql.cache.test.ts. [1] [2]bridge/__tests__/connectionBuilder.test.ts.