Re: [HACKERS] Call to build-in operator from new operator

2005-04-18 Thread John Hansen
[HACKERS] Call to build-in operator from new operator > > Greetings, > > I don't really know if this is the correct place to ask this > question, if not please direct me to the correct mailing list. > > I'm trying to develop a new operator for PostGreSQL (actually

Re: [HACKERS] Call to build-in operator from new operator

2005-04-18 Thread Sailesh Krishnamurthy
As others pointed out, DirectFunctionCall2 is your friend. There is a mailing list for TelegraphCQ. It's a Yahoo group - visit http://groups.yahoo.com/group/telegraphcq About accessing data from a table in another database ... we need to know more about what exactly you're doing. Please post on

[HACKERS] Call to build-in operator from new operator

2005-04-18 Thread Kim Bille
Greetings, I don't really know if this is the correct place to ask this question, if not please direct me to the correct mailing list. I'm trying to develop a new operator for PostGreSQL (actually for TelegraphCQ, which is an extension of PSQL). Part of the operator's procedure is the @-operator.

Re: [HACKERS] Call to build-in operator from new operator

2005-04-18 Thread Tom Lane
[EMAIL PROTECTED] writes: > I'm trying to develop a new operator for PostGreSQL (actually for > TelegraphCQ, which > is an extension of PSQL). Part of the operator's procedure is the @-operator. > So now > my question is: How do I call the on_pb function from inside my own function?. DirectFunct

Re: [HACKERS] Call to build-in operator from new operator

2005-04-18 Thread Michael Fuhr
On Mon, Apr 18, 2005 at 02:39:52PM +0200, [EMAIL PROTECTED] wrote: > > I'm trying to develop a new operator for PostGreSQL (actually for > TelegraphCQ, which > is an extension of PSQL). Part of the operator's procedure is the @-operator. > So now > my question is: How do I call the on_pb functio

[HACKERS] Call to build-in operator from new operator

2005-04-18 Thread kim
Greetings, I don't really know if this is the correct place to ask this question, if not please direct me to the correct mailing list. I'm trying to develop a new operator for PostGreSQL (actually for TelegraphCQ, which is an extension of PSQL). Part of the operator's procedure is the @-operato