mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
9 lines
172 B
Awk
9 lines
172 B
Awk
# $Id: count.awk,v 12.0 2004/11/17 03:43:24 bostic Exp $
|
|
#
|
|
# Print out the number of log records for transactions that we
|
|
# encountered.
|
|
|
|
/^\[/{
|
|
if ($5 != 0)
|
|
print $5
|
|
}
|