Where to execute the compiled psql

From: "John" <xiaoqianjiang(at)hotmail(dot)com>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: Where to execute the compiled psql
Date: 2006-02-03 04:04:00
Message-ID: BAY105-DAV2F3145A7665DCE51B4BC8AC0D0@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

Greetings,

I am writing some plugin for pq. After running ./configure and make, shall I
just go to /src/bin/psql to execute my executable psql -U (usrname) dbname?
It seems that my updates in the file parse_expr.c is not reflect in this
executable? For example, I changed one line from

if (NULL == tup)
ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT),
errmsg("key value not found")));

-->

if (NULL == tup)
ereport(ERROR, (errcode(ERRCODE_UNDEFINED_OBJECT),
errmsg("key value not found while building relation")));

But the program still reports key value not found when it runs.

Best wishes,
John

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Greg Stark 2006-02-03 04:33:38 Re: Passing arguments to views
Previous Message Mark Woodward 2006-02-03 03:14:11 Re: Multiple logical databases

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2006-02-03 05:58:02 Re: [BUGS] BUG #2171: Differences compiling plpgsql in ecpg and psql
Previous Message Bruce Momjian 2006-02-03 03:55:23 Re: [BUGS] BUG #2171: Differences compiling plpgsql in ecpg