aboutsummaryrefslogtreecommitdiff
path: root/src/test/performance/sqls/slcsimple
blob: e153a3838ce02cb5ad9f2e49aea7faf2b4dd9e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
`> .sqlf`;

# PgSQL specific to execute all queries in single xaction
`echo "BEGIN;" >> .sqlf` if ( $TestDBMS =~ /^pgsql/ && $XACTBLOCK ne '' );


`cat sqls/slcsimple.data >> .sqlf`;


`echo "END;" >> .sqlf` if ( $TestDBMS =~ /^pgsql/ && $XACTBLOCK ne '' );

# Run queries
`time $FrontEnd < .sqlf`;