Where to execute the compiled psql - Mailing list pgsql-hackers

From John
Subject Where to execute the compiled psql
Date
Msg-id BAY105-DAV2F3145A7665DCE51B4BC8AC0D0@phx.gbl
Whole thread Raw
In response to Krb5 & multiple DB connections  (Stephen Frost <sfrost@snowman.net>)
Responses Re: Where to execute the compiled psql
List pgsql-hackers
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 


pgsql-hackers by date:

Previous
From: "Mark Woodward"
Date:
Subject: Re: Multiple logical databases
Next
From: Greg Stark
Date:
Subject: Re: Passing arguments to views