Fix test for MySQL Compatible Types (suppress password warning)

This commit is contained in:
tpanetti 2023-06-14 13:04:20 -07:00
parent 18fb4fbc15
commit 87904976ed

View File

@ -146,7 +146,7 @@ EOT
# Now run the MySQL test script on the ClickHouse DB
echo "Run MySQL test"
${MYSQL_CLIENT} --user="$USER" --password="$PASSWORD" --host="$HOST" --port="$PORT" < $TEMP_FILE
MYSQL_PWD=$PASSWORD ${MYSQL_CLIENT} --user="$USER" --host="$HOST" --port="$PORT" < $TEMP_FILE
# Clean up the temp file
rm $TEMP_FILE