From 5e96a4cabb268a03816e25b603c17c33d719915d Mon Sep 17 00:00:00 2001 From: whysage <67018871+whysage@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:57:21 +0200 Subject: [PATCH] Fix mariadb run tests doc (#10848) (cherry picked from commit ffdbd326bbea8d7d68e08285c50d0da351ebf95a) --- README.unittests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.unittests.rst b/README.unittests.rst index 57c6d42dad..2ce4f0fff1 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -280,7 +280,7 @@ intended for production use! # configure the database sleep 20 - docker exec -ti mariadb mysql -u root -ppassword -w -e "CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;" + docker exec -ti mariadb mariadb -u root -ppassword -w -e "CREATE DATABASE test_schema CHARSET utf8mb4; GRANT ALL ON test_schema.* TO scott;" # To stop the container. It will also remove it. docker stop mariadb -- 2.47.2