mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-14 12:52:17 +00:00
Solved problem with integration tests under MySQL 8.x (due to default auth plugin for root)
10 lines
266 B
Bash
Executable File
10 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
mysql -u root < $SCRIPTPATH/db_setup.sql
|
|
./example_query_sync example_user example_password
|
|
./example_query_async example_user example_password
|
|
./example_metadata example_user example_password |