Percona-Lab/sysbench-tpcc

for postgresql (performance improve) , should use prepared statement

Opened this issue · 0 comments

for postgresql (performance improve), should use prepared statement, exp:

prepare p1(int) as select * from tbl where id=$1;

execute p1(:id);
...