~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-proposed

« back to all changes in this revision

Viewing changes to src/test/performance/sqls/slcsimple

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
`> .sqlf`;
 
3
 
 
4
# PgSQL specific to execute all queries in single xaction
 
5
`echo "BEGIN;" >> .sqlf` if ( $TestDBMS =~ /^pgsql/ && $XACTBLOCK ne '' );
 
6
 
 
7
 
 
8
`cat sqls/slcsimple.data >> .sqlf`;
 
9
 
 
10
 
 
11
`echo "END;" >> .sqlf` if ( $TestDBMS =~ /^pgsql/ && $XACTBLOCK ne '' );
 
12
 
 
13
# Run queries
 
14
`time $FrontEnd < .sqlf`;