DBT5 execution failed due to undefined symbol: PQescapeLiteral

From: amul sul <sul_amul(at)yahoo(dot)co(dot)in>
To: "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org>, "osdldbt-general(at)lists(dot)sourceforge(dot)net" <osdldbt-general(at)lists(dot)sourceforge(dot)net>
Subject: DBT5 execution failed due to undefined symbol: PQescapeLiteral
Date: 2013-08-16 04:13:16
Message-ID: 1376626396.99046.YahooMailNeo@web193502.mail.sg3.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hello ,

I am trying to run DBT5 to test performance of PG9.2.4,

But execution failed due to undefined symbol: PQescapeLiteral error in <output_dir>/bh/bh.out

Full error as follow: 
----------------------------------------------------------------------
dbt5 - Brokerage House
Listening on port: 30000

Using the following database settings:
Host:
Database port:
Database name: dbt5
Brokerage House opened for business, waiting traders...
WARNING:  Query CPF2_1 should return 10-30 rows.
NOTICE:  CPF2: INPUTS START
NOTICE:  CPF2: acct_id 0
NOTICE:  CPF2: INPUTS END
WARNING:  UNEXPECTED EXECUTION RESULT: customer_position.c 456
SELECT   t_id,
         t_s_symb,
         t_qty,
         st_name,
         th_dts
FROM     (SELECT   t_id AS id
          FROM     trade
          WHERE    t_ca_id = 0
          ORDER BY t_dts DESC
          LIMIT 10) AS t,
         trade,
         trade_history,
         status_type
WHERE    t_id = id
         AND th_t_id = t_id
         AND st_id = th_st_id
ORDER BY th_dts DESC
LIMIT 30
BrokerageHouseMain: symbol lookup error: BrokerageHouseMain: undefined symbol: PQescapeLiteral
--------------------------------------------------------------------------

Environment :
 
CentOS 6.4(Final)
PG installed using source code

DBT5 is cloned from http://github.com/petergeoghegan/dbt5.git
also tried with http://git.code.sf.net/p/osdldbt/dbt repo with pg9.0 

same error occur when used with PG9.0,PG9.1 PG9.3beta2

Execution: 

1. Database loading :
 dbt5-pgsql-build-db -c 1000 -s 500 -w 300 -r

2. Test 
dbt5-run-workload -a pgsql -c 1000 -d 300 -u 5 -n dbt5 -t 5000 -w 200 -o /tmp/result

Do I missing something?
Is there anything more need to do?  

Thank you !!

Regards,
Amul Sul

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Albe Laurenz 2013-08-16 07:26:09 Re: DBT5 execution failed due to undefined symbol: PQescapeLiteral
Previous Message Josh Berkus 2013-08-16 00:57:31 Re: Need some basic information