2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 12:52:17 +00:00

Now root password is assumed to be blank

This commit is contained in:
ruben
2020-01-13 11:41:16 +00:00
parent 7bdb287128
commit 2e1bdf794e
3 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
mysql -u root -proot < $SCRIPTPATH/db_setup.sql
./example_query_sync root root
./example_query_async root root
./example_metadata root root
mysql -u root < $SCRIPTPATH/db_setup.sql
./example_query_sync root ""
./example_query_async root ""
./example_metadata root ""

View File

@@ -1,3 +1,3 @@
#!/bin/bash
mysql -u root -proot < db_setup.sql
mysql -u root < db_setup.sql

View File

@@ -15,7 +15,7 @@ namespace test
struct IntegTest : testing::Test
{
mysql::connection_params connection_params {"root", "root", "awesome"};
mysql::connection_params connection_params {"root", "", "awesome"};
boost::asio::io_context ctx;
mysql::connection<boost::asio::ip::tcp::socket> conn {ctx};
mysql::error_code errc;