feat: enable emulateMySQL on SQLite adapter for test backend

Pulls latest utopia-php/database (e44768f) with the emulateMySQL flag and
opts SQLite into MariaDB-shape behaviour so the existing test suite, which
assumes MariaDB semantics, continues to pass against SQLite.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jake Barnby
2026-04-30 13:22:08 +12:00
co-authored by Claude Opus 4.7
parent 7234f69738
commit 46357947a7
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -356,7 +356,7 @@ $register->set('pools', function () {
'mysql' => new MySQL($resource()),
'mongodb' => new Mongo($resource()),
'postgresql' => new Postgres($resource()),
'sqlite' => new SQLite($resource()),
'sqlite' => (new SQLite($resource()))->setEmulateMySQL(true),
default => null
};