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

@ -6,6 +6,13 @@
#include "test_binlog_fnc.h"
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;
@ -93,6 +100,7 @@ int check_sha1(TestConnections* Test)
}
return local_result;
}
}
int start_transaction(TestConnections* Test)
{