You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* * ssl_cipher - list of one or more permissible ciphers to use for SSL encryption (MySQL specific, @see http://php.net/manual/de/ref.pdo-mysql.php#pdo.constants.mysql-attr-cipher)
56
56
* * databases - include more database configs and switch between them in tests.
57
+
* * initial_queries - list of queries to be executed right after connection to the database has been initiated, i.e. creating the database if it does not exist or preparing the database collation
57
58
*
58
59
* ## Example
59
60
*
@@ -73,6 +74,10 @@
73
74
* ssl_ca: '/path/to/ca-cert.pem'
74
75
* ssl_verify_server_cert: false
75
76
* ssl_cipher: 'AES256-SHA'
77
+
* initial_queries:
78
+
* - 'CREATE DATABASE IF NOT EXISTS temp_db;'
79
+
* - 'USE temp_db;'
80
+
* - 'SET NAMES utf8;'
76
81
*
77
82
* ## Example with multi-dumps
78
83
* modules:
@@ -559,6 +564,12 @@ private function connect($databaseKey, $databaseConfig)
0 commit comments