From version 10.0.2, MariaDB supports global transaction IDs for replication.
BINLOG_GTID_POS(binlog_filename,binlog_offset)
The BINLOG_GTID_POS() function takes as input an old-style binary log position in the form of a file name and a file offset. It looks up the position in the current binlog, and returns a string representation of the corresponding GTID position. If the position is not found in the current binlog, NULL is returned.
SELECT BINLOG_GTID_POS("master-bin.000001", 600);
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/binlog_gtid_pos/