mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-16 16:23:30 +00:00
29 lines
698 B
Plaintext
29 lines
698 B
Plaintext
# User@Host: meow[meow] @ [1.2.3.8]
|
|
# Thread_id: 5 Schema: db1
|
|
# Query_time: 0.000002 Lock_time: 0.000000 Rows_sent: 5 Rows_examined: 3
|
|
# No InnoDB statistics available for this query
|
|
SELECT *
|
|
|
|
FROM foo
|
|
|
|
WHERE bar = 'bar';
|
|
# User@Host: meow[meow] @ [1.2.3.8]
|
|
# Thread_id: 5 Schema: db2
|
|
# Query_time: 0.000899 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 3
|
|
# No InnoDB statistics available for this query
|
|
use db;
|
|
INSERT INTO tbl
|
|
|
|
|
|
VALUES
|
|
|
|
(1), (2),
|
|
|
|
|
|
(3);
|
|
# User@Host: meow[meow] @ [1.2.3.8]
|
|
# Thread_id: 5 Schema: db2
|
|
# Query_time: 0.018799 Lock_time: 0.009453 Rows_sent: 9 Rows_examined: 2
|
|
# No InnoDB statistics available for this query
|
|
SELECT * FROM foo;
|