From: whysage <67018871+whysage@users.noreply.github.com> Date: Tue, 6 Feb 2024 17:57:21 +0000 (+0200) Subject: Fix mariadb run tests doc (#10848) X-Git-Tag: rel_2_0_26~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e96a4cabb268a03816e25b603c17c33d719915d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix mariadb run tests doc (#10848) (cherry picked from commit ffdbd326bbea8d7d68e08285c50d0da351ebf95a) --- 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