Where to execute the compiled psql

Поиск
Список
Период
Сортировка
От John
Тема Where to execute the compiled psql
Дата
Msg-id BAY105-DAV2F3145A7665DCE51B4BC8AC0D0@phx.gbl
обсуждение исходный текст
Ответ на Krb5 & multiple DB connections  (Stephen Frost <sfrost@snowman.net>)
Ответы Re: Where to execute the compiled psql  (Peter Eisentraut <peter_e@gmx.net>)
Список 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 по дате отправления:

Предыдущее
От: "Mark Woodward"
Дата:
Сообщение: Re: Multiple logical databases
Следующее
От: Greg Stark
Дата:
Сообщение: Re: Passing arguments to views