Test pt-fingerprint.

This commit is contained in:
Daniel Nichter
2012-03-26 17:24:44 -06:00
parent beaa9240e7
commit 9c0e642443
6 changed files with 82 additions and 3 deletions

View File

@@ -0,0 +1,2 @@
# Query_time: 1
select * from db.tbl where id=1 or foo='bar';

View File

@@ -0,0 +1 @@
select * from db.tbl where id=? or foo=?

View File

@@ -0,0 +1,2 @@
# Query_time: 1
select col from db.tbl1 where id in (1, 2, 3);

View File

@@ -0,0 +1 @@
select col from db.tbl? where id in(?+)