День добрый! После переноса базы nodeny с mysql Ver 14.14 Distrib 5.6.42 на Ver 14.14 Distrib 5.7.30 нельзя создать "учетную запись в группе". Получаю 2 ошибки:
Statement violates GTID consistency: Updates to non-transactional tables can only be done in either autocommitted statements or single-statement transactions, and never in the same statement as updates to transactional tables.
{
'sql' => 'DELETE FROM users_trf WHERE uid=?',
'param' => [
2495
]
};
DELETE FROM users_trf WHERE uid='2495'
Duplicate entry '2495' for key 'uid'
{
'param' => [
2495
],
'sql' => 'INSERT INTO users_trf SET uid=?'
};
INSERT INTO users_trf SET uid='2495'
Так понимаю, что связано с вводом GTID в новой версии mysql, подскажите плиз чего делать?