WL#9175: Correct recovery of DDL statements/transactions by binary log.

Affects: Server-8.0   —   Status: Complete

With advent of new data-dictionary it becomes possible to package
metadata changes and writing binary log into single transaction.
We aim to make DDL statements crash-safe by using this feature.

However there is a gotcha here. If crash happens after the moment
when DDL statement is committed in InnoDB but before binary log is
flushed to disk we will get inconsistency between DD and binary log
after restart.

Notice that for normal DML transactions this problem does not occur
because we use 2-phase commit protocol for them and binlog serves
as transaction coordinator log in this case. I.e. if transaction is
absent from binary log it is discovered as prepared but not yet
committed and is rolled back during server restart.

The mechanism implementing recovery of DML transactions relies on
special type of binary log event Xid_log_event which is not used
for DDL statements/transactions.

The goal of this task is to implement support for correct recovery
for DDL transactions based on the binary log data. This means that
we need to use 2-phase commit for such transactions plus add
an equivalent of Xid_log_events for them.

The worklog limits the crash-recovery support to DDL:s that are 2pc capable. At
this point this subclass includes all ACL DDL:s including new CREATE|DROP role.