mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
8 lines
127 B
Awk
8 lines
127 B
Awk
|
# $Id: commit.awk,v 10.2 1999/11/21 18:01:42 bostic Exp $
|
||
|
#
|
||
|
# Output tid of committed transactions.
|
||
|
|
||
|
/txn_regop/ {
|
||
|
print $5
|
||
|
}
|