remove sha1check from *gtid tests due to lack of binlog files in the Maxscale cache

This commit is contained in:
Timofey Turenko
2017-12-11 16:12:42 +02:00
parent 1ae05f0487
commit 45ba9b3730

View File

@ -7,6 +7,13 @@
int check_sha1(TestConnections* Test)
{
if (Test->binlog_master_gtid || Test->binlog_slave_gtid)
{
Test->tprintf("GTID is in use, do not check sha1\n");
return 0;
}
else
{
char sys[1024];
char * x;
int local_result = 0;
@ -92,6 +99,7 @@ int check_sha1(TestConnections* Test)
}
}
return local_result;
}
}
int start_transaction(TestConnections* Test)