File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,15 +58,15 @@ if /i "%GITHUB_ACTIONS%" equ "True" (
58
58
set PDO_MYSQL_TEST_USER = %MYSQL_TEST_USER%
59
59
set PDO_MYSQL_TEST_PASS = %MYSQL_TEST_PASSWD%
60
60
set PDO_MYSQL_TEST_DSN = mysql:host=%PDO_MYSQL_TEST_HOST% ;port=%PDO_MYSQL_TEST_PORT% ;dbname=test
61
- " C:\Program Files\MySql\MySQL Server 5.7\bin\ mysql.exe " --user=%MYSQL_TEST_USER% -e " CREATE DATABASE IF NOT EXISTS test"
61
+ mysql --user=%MYSQL_TEST_USER% -e " CREATE DATABASE IF NOT EXISTS test"
62
62
if %errorlevel% neq 0 exit /b 3
63
63
64
64
set PGUSER = postgres
65
65
set PGPASSWORD = postgresql_Pass11
66
66
rem set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%
67
67
echo ^ < ?php $conn_str = " host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD% " ; ?^ > >> ext\pgsql\tests\config.inc
68
68
set PDO_PGSQL_TEST_DSN = pgsql:host=127.0.0.1 port=5432 dbname=test user=%PGUSER% password=%PGPASSWORD%
69
- " C:\Program Files\PostgreSQL\10\bin \createdb.exe" test
69
+ " %PGBIN% \createdb.exe" test
70
70
if %errorlevel% neq 0 exit /b 3
71
71
72
72
set ODBC_TEST_USER = sa
You can’t perform that action at this time.
0 commit comments