From ffdbd326bbea8d7d68e08285c50d0da351ebf95a 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) --- README.unittests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.unittests.rst b/README.unittests.rst index 046a30f6a9..07b9350378 100644 --- a/README.unittests.rst +++ b/README.unittests.rst @@ -276,7 +276,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.3