Skip to content

Commit

Permalink
fix according to updated DTD
Browse files Browse the repository at this point in the history
SVN Revision: 580
  • Loading branch information
nniclausse committed Nov 12, 2005
1 parent 096ef30 commit 8d80b67
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions examples/pgsql.xml.in
Expand Up @@ -20,27 +20,25 @@
<session popularity="100" name="pgsql-example" type="ts_pgsql">
<transaction name="connection">
<request>
<pgsql type="connect">
<pgsql_connect database="bench" username="bench" />
</pgsql>
<pgsql type="connect" database="bench" username="bench" />
</request>
</transaction>

<transaction name="authentication">
<request>
<pgsql type="authenticate" value="sesame"/>
<pgsql type="authenticate" password="sesame"/>
</request>
</transaction>

<thinktime value="12"/>

<transaction name="select">
<request><pgsql type="sql" value="SELECT * from accounts;"></pgsql></request>
<request><pgsql type="sql">SELECT * from accounts;</pgsql></request>
</transaction>

<thinktime value="20"/>

<request><pgsql type="sql" value="SELECT * from users;"></pgsql></request>
<request><pgsql type="sql">SELECT * from users;</pgsql></request>

<request><pgsql type="close"></pgsql></request>

Expand Down

0 comments on commit 8d80b67

Please sign in to comment.