PT-2295 - Fix tests on distributions

- Removed mysql_ssl=1 from t/lib/TableParser.t, because it breaks with
  DBI 1.642
This commit is contained in:
Sveta Smirnova
2024-02-01 18:03:18 +03:00
parent 50d08a46f2
commit 8261dbc543

View File

@@ -753,7 +753,7 @@ SKIP: {
# msandbox user does not have GRANT privs.
my $root_dbh = DBI->connect(
"DBI:mysql:host=127.0.0.1;port=12345;mysql_ssl=1", 'root', 'msandbox',
"DBI:mysql:host=127.0.0.1;port=12345", 'root', 'msandbox',
{ PrintError => 0, RaiseError => 1 });
$root_dbh->do(q[CREATE USER 'user'@'%' IDENTIFIED BY '';] ) || die($root_dbh->errstr);