We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07aae0b commit 9b646f4Copy full SHA for 9b646f4
mysql.bench.php
@@ -31,7 +31,7 @@
31
return;
32
}
33
34
- $dbName = $args['mysql_database'] ?? 'bench_test';
+ $dbName = isset($args['mysql_database']) ? $args['mysql_database'] : 'bench_test';
35
36
// check if database exists
37
$result = $mysqli->query("SELECT schema_name FROM information_schema.schemata WHERE schema_name = '$dbName'");
0 commit comments