From 1a874de9ef58e7112dc22b177fc63731331de909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Wed, 5 Nov 2025 17:58:08 +0100 Subject: [PATCH] Ensure existence of testing database for 'reg_test_proclist_use_after_free-t.cpp' --- test/tap/tests/reg_test_proclist_use_after_free-t.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tap/tests/reg_test_proclist_use_after_free-t.cpp b/test/tap/tests/reg_test_proclist_use_after_free-t.cpp index ff675c0cd..37e656cdb 100644 --- a/test/tap/tests/reg_test_proclist_use_after_free-t.cpp +++ b/test/tap/tests/reg_test_proclist_use_after_free-t.cpp @@ -35,6 +35,7 @@ int main(int argc, char** argv) { return EXIT_FAILURE; } + MYSQL_QUERY_T(proxy, "CREATE DATABASE IF NOT EXISTS test"); MYSQL_QUERY_T(proxy, "CREATE TABLE IF NOT EXISTS test.auto_inc_multiplex " "(c1 INT NOT NULL AUTO_INCREMENT PRIMARY KEY, c2 VARCHAR(100), c3 VARCHAR(100))"