public inbox for [email protected]
help / color / mirror / Atom feedFunction C and INOUT parameters
16+ messages / 8 participants
[nested] [flat]
* Function C and INOUT parameters
@ 2009-03-24 16:54 Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
0 siblings, 2 replies; 16+ messages in thread
From: Ben Ali Rachid @ 2009-03-24 16:54 UTC (permalink / raw)
To: [email protected]
Hello,
I posted my problem (on pgsql-interfaces list) about the INOUT parameters on PostgreSQL 8.3.6 (Win32), but without success. I re-post my question here, while hoping to have more success.
When I use a function with one INOUT (or OUT) parameter like below, everyting is OK.
CREATE OR REPLACE FUNCTION add_one(INOUT arg integer)
RETURNS integer AS '$libdir/myDLL.dll', 'add_one'
LANGUAGE 'c' VOLATILE STRICT ;
// In 'myDLL'
void add_one(int arg)
{
arg = arg + 1 ;
}
select * from add_one(10) ; // OK
But when I use 2 or more INOUT (or OUT) parameters like below, the server crashes with exception 0xC0000005 (access violation).
CREATE OR REPLACE FUNCTION add_one(INOUT arg1 integer, INOUT arg2 integer)
RETURNS record AS '$libdir/myDLL.dll', 'add_one'
LANGUAGE 'c' VOLATILE STRICT ;
void add_one(int arg1, int arg2)
{
arg1 = arg1 + 1 ;
arg2 = arg2 + 1 ;
}
select * from add_one(10, 20); // CRASH
I probably understood something wrong with the INOUT parameter. Is there someone to help me ? Thanks.
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
@ 2009-03-24 18:11 ` Tom Lane <[email protected]>
1 sibling, 0 replies; 16+ messages in thread
From: Tom Lane @ 2009-03-24 18:11 UTC (permalink / raw)
To: Ben Ali Rachid <[email protected]>; +Cc: [email protected]
Ben Ali Rachid <[email protected]> writes:
> I posted my problem (on pgsql-interfaces list) about the INOUT parameters on PostgreSQL 8.3.6 (Win32), but without success. I re-post my question here, while hoping to have more success.
You apparently have no understanding at all of how parameters are passed
to and from C-language functions in Postgres :-(. Start here:
http://www.postgresql.org/docs/8.3/static/xfunc-c.html
and note that any situation involving multiple OUT parameters is handled
as returning an anonymous composite type. There are a number of
useful examples in the contrib modules.
regards, tom lane
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
@ 2009-03-24 18:11 ` Greg Stark <[email protected]>
2009-03-24 18:21 ` Re: Function C and INOUT parameters Robert Haas <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
1 sibling, 2 replies; 16+ messages in thread
From: Greg Stark @ 2009-03-24 18:11 UTC (permalink / raw)
To: Ben Ali Rachid <[email protected]>; +Cc: [email protected]
On Tue, Mar 24, 2009 at 4:54 PM, Ben Ali Rachid <[email protected]> wrote:
> Hello,
>
> I posted my problem (on pgsql-interfaces list) about the INOUT parameters on
> PostgreSQL 8.3.6 (Win32), but without success. I re-post my question here,
> while hoping to have more success.
Personally I'm of the opinion we should eliminate most of these
duplicative mailing lists like -performance and -interfaces and just
use -general. I don't see that having multiple lists for user
questions helps either the users or the answerers due to just this
type of problem.
> When I use a function with one INOUT (or OUT) parameter like below,
> everyting is OK.
>
> CREATE OR REPLACE FUNCTION add_one(INOUT arg integer)
> RETURNS integer AS '$libdir/myDLL.dll', 'add_one'
> LANGUAGE 'c' VOLATILE STRICT ;
>
> // In 'myDLL'
> void add_one(int arg)
a) you should probably be using V1 calling api rather than V0. see
http://www.postgresql.org/docs/8.3/interactive/xfunc-c.html#AEN40901
b) you need to arrange for the C function to return a record with all
the returned fields. You can't just set the parameters to new values
and return void.
The api to return a record is at:
http://www.postgresql.org/docs/8.3/interactive/xfunc-c.html#AEN41361
--
greg
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
@ 2009-03-24 18:21 ` Robert Haas <[email protected]>
1 sibling, 0 replies; 16+ messages in thread
From: Robert Haas @ 2009-03-24 18:21 UTC (permalink / raw)
To: Greg Stark <[email protected]>; +Cc: Ben Ali Rachid <[email protected]>; [email protected]
On Tue, Mar 24, 2009 at 2:11 PM, Greg Stark <[email protected]> wrote:
> Personally I'm of the opinion we should eliminate most of these
> duplicative mailing lists like -performance and -interfaces and just
> use -general. I don't see that having multiple lists for user
> questions helps either the users or the answerers due to just this
> type of problem.
-1. I don't read -general; I do read -performance. The S/N ratio is
high enough to make it worth the time it takes; I don't think that
would be true on -general.
...Robert
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
@ 2009-03-25 01:03 ` Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
1 sibling, 1 reply; 16+ messages in thread
From: Josh Berkus @ 2009-03-25 01:03 UTC (permalink / raw)
To: Greg Stark <[email protected]>; +Cc: [email protected]
> Personally I'm of the opinion we should eliminate most of these
> duplicative mailing lists like -performance and -interfaces and just
> use -general. I don't see that having multiple lists for user
> questions helps either the users or the answerers due to just this
> type of problem.
... and instead drive new users away by forcing them to sign up for one
massive 400 posts/day list?
I'm not sure about -interfaces, but -performance, -sql, -jdbc and others
definitely have specific audiences and themes which they are already
handling a *lot* of traffic for.
--Josh
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
@ 2009-03-25 01:18 ` Tom Lane <[email protected]>
2009-03-25 01:34 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
0 siblings, 2 replies; 16+ messages in thread
From: Tom Lane @ 2009-03-25 01:18 UTC (permalink / raw)
To: Josh Berkus <[email protected]>; +Cc: Greg Stark <[email protected]>; [email protected]
Josh Berkus <[email protected]> writes:
> I'm not sure about -interfaces, but -performance, -sql, -jdbc and others
> definitely have specific audiences and themes which they are already
> handling a *lot* of traffic for.
It does look like -interfaces is dying: almost no traffic, and what
questions it does get are off-topic more often than not. Partly this
is because the -jdbc, -odbc, and -php lists suck away all the traffic
about those interfaces, leaving not much. So we could kill -interfaces
without much loss IMHO.
The other global lists seem to be in good health from what I can see.
Can't speak to the regional or user-group lists, I don't follow them.
regards, tom lane
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
@ 2009-03-25 01:34 ` Josh Berkus <[email protected]>
1 sibling, 0 replies; 16+ messages in thread
From: Josh Berkus @ 2009-03-25 01:34 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Greg Stark <[email protected]>; [email protected]
Tom,
> The other global lists seem to be in good health from what I can see.
> Can't speak to the regional or user-group lists, I don't follow them.
Those have specific reasons to survive regardless of traffic level.
--Josh
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: Function C and INOUT parameters
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
@ 2009-03-25 11:46 ` Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
1 sibling, 1 reply; 16+ messages in thread
From: Peter Eisentraut @ 2009-03-25 11:46 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Josh Berkus <[email protected]>; Greg Stark <[email protected]>; [email protected]
Tom Lane wrote:
> It does look like -interfaces is dying: almost no traffic, and what
> questions it does get are off-topic more often than not. Partly this
> is because the -jdbc, -odbc, and -php lists suck away all the traffic
> about those interfaces, leaving not much. So we could kill -interfaces
> without much loss IMHO.
It was supposed to have been killed already, as per last year's dev
meeting and subsequent discussion. Someone just needs to do it.
^ permalink raw reply [nested|flat] 16+ messages in thread
* shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
@ 2009-03-25 15:11 ` Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
0 siblings, 1 reply; 16+ messages in thread
From: Alvaro Herrera @ 2009-03-25 15:11 UTC (permalink / raw)
To: Peter Eisentraut <[email protected]>; +Cc: Tom Lane <[email protected]>; Josh Berkus <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
Peter Eisentraut wrote:
> Tom Lane wrote:
>> It does look like -interfaces is dying: almost no traffic, and what
>> questions it does get are off-topic more often than not. Partly this
>> is because the -jdbc, -odbc, and -php lists suck away all the traffic
>> about those interfaces, leaving not much. So we could kill -interfaces
>> without much loss IMHO.
>
> It was supposed to have been killed already, as per last year's dev
> meeting and subsequent discussion. Someone just needs to do it.
Okay, I've moved it to the inactive group; it already shows up as such
in archives, and www will be updated as soon as it rebuilds and
propagates to the mirrors.
As for actually shutting it down in Majordomo, Marc is the man.
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
@ 2009-03-25 18:19 ` Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
0 siblings, 1 reply; 16+ messages in thread
From: Josh Berkus @ 2009-03-25 18:19 UTC (permalink / raw)
To: Alvaro Herrera <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; Tom Lane <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
On 3/25/09 8:11 AM, Alvaro Herrera wrote:
> Peter Eisentraut wrote:
>> Tom Lane wrote:
>>> It does look like -interfaces is dying: almost no traffic, and what
>>> questions it does get are off-topic more often than not. Partly this
>>> is because the -jdbc, -odbc, and -php lists suck away all the traffic
>>> about those interfaces, leaving not much. So we could kill -interfaces
>>> without much loss IMHO.
>> It was supposed to have been killed already, as per last year's dev
>> meeting and subsequent discussion. Someone just needs to do it.
>
> Okay, I've moved it to the inactive group; it already shows up as such
> in archives, and www will be updated as soon as it rebuilds and
> propagates to the mirrors.
>
> As for actually shutting it down in Majordomo, Marc is the man.
>
Might want to make an announcement on that list first.
--Josh
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
@ 2009-03-25 19:17 ` Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
0 siblings, 1 reply; 16+ messages in thread
From: Alvaro Herrera @ 2009-03-25 19:17 UTC (permalink / raw)
To: Josh Berkus <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; Tom Lane <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
Josh Berkus wrote:
> On 3/25/09 8:11 AM, Alvaro Herrera wrote:
>> As for actually shutting it down in Majordomo, Marc is the man.
>>
>
> Might want to make an announcement on that list first.
http://archives.postgresql.org/pgsql-interfaces/2008-07/msg00002.php
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
@ 2009-03-25 19:23 ` Josh Berkus <[email protected]>
2009-03-25 21:50 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
0 siblings, 1 reply; 16+ messages in thread
From: Josh Berkus @ 2009-03-25 19:23 UTC (permalink / raw)
To: Alvaro Herrera <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; Tom Lane <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
On 3/25/09 12:17 PM, Alvaro Herrera wrote:
> Josh Berkus wrote:
>> On 3/25/09 8:11 AM, Alvaro Herrera wrote:
>
>>> As for actually shutting it down in Majordomo, Marc is the man.
>>>
>> Might want to make an announcement on that list first.
>
> http://archives.postgresql.org/pgsql-interfaces/2008-07/msg00002.php
>
That was 6 months ago. I doubt anyone remembers it. Make another
announcement, so that when people get the "unsubscribed" announcement,
they're not confused.
--Josh
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
@ 2009-03-25 21:50 ` Alvaro Herrera <[email protected]>
2009-03-25 21:55 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Tom Lane <[email protected]>
2009-03-26 03:43 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Marc G. Fournier <[email protected]>
0 siblings, 2 replies; 16+ messages in thread
From: Alvaro Herrera @ 2009-03-25 21:50 UTC (permalink / raw)
To: Josh Berkus <[email protected]>; +Cc: Peter Eisentraut <[email protected]>; Tom Lane <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
Josh Berkus wrote:
> On 3/25/09 12:17 PM, Alvaro Herrera wrote:
>> http://archives.postgresql.org/pgsql-interfaces/2008-07/msg00002.php
>
> That was 6 months ago. I doubt anyone remembers it. Make another
> announcement, so that when people get the "unsubscribed" announcement,
> they're not confused.
Done.
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 21:50 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
@ 2009-03-25 21:55 ` Tom Lane <[email protected]>
2009-03-26 06:24 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Peter Eisentraut <[email protected]>
1 sibling, 1 reply; 16+ messages in thread
From: Tom Lane @ 2009-03-25 21:55 UTC (permalink / raw)
To: Alvaro Herrera <[email protected]>; +Cc: Josh Berkus <[email protected]>; Peter Eisentraut <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
Alvaro Herrera <[email protected]> writes:
> Josh Berkus wrote:
>> That was 6 months ago. I doubt anyone remembers it. Make another
>> announcement, so that when people get the "unsubscribed" announcement,
>> they're not confused.
> Done.
BTW, what was the reason we didn't pull the trigger before, when we
retired the other lists? Just an oversight?
regards, tom lane
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 21:50 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 21:55 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Tom Lane <[email protected]>
@ 2009-03-26 06:24 ` Peter Eisentraut <[email protected]>
0 siblings, 0 replies; 16+ messages in thread
From: Peter Eisentraut @ 2009-03-26 06:24 UTC (permalink / raw)
To: pgsql-www; +Cc: Tom Lane <[email protected]>; Alvaro Herrera <[email protected]>; Josh Berkus <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>
On Wednesday 25 March 2009 23:55:06 Tom Lane wrote:
> Alvaro Herrera <[email protected]> writes:
> > Josh Berkus wrote:
> >> That was 6 months ago. I doubt anyone remembers it. Make another
> >> announcement, so that when people get the "unsubscribed" announcement,
> >> they're not confused.
> >
> > Done.
>
> BTW, what was the reason we didn't pull the trigger before, when we
> retired the other lists? Just an oversight?
Because the same people who complained just now complained back then as well.
So we retired the lists without objections first.
^ permalink raw reply [nested|flat] 16+ messages in thread
* Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters)
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Re: Function C and INOUT parameters Greg Stark <[email protected]>
2009-03-25 01:03 ` Re: Function C and INOUT parameters Josh Berkus <[email protected]>
2009-03-25 01:18 ` Re: Function C and INOUT parameters Tom Lane <[email protected]>
2009-03-25 11:46 ` Re: Function C and INOUT parameters Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 21:50 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
@ 2009-03-26 03:43 ` Marc G. Fournier <[email protected]>
1 sibling, 0 replies; 16+ messages in thread
From: Marc G. Fournier @ 2009-03-26 03:43 UTC (permalink / raw)
To: Alvaro Herrera <[email protected]>; +Cc: Josh Berkus <[email protected]>; Peter Eisentraut <[email protected]>; Tom Lane <[email protected]>; Greg Stark <[email protected]>; [email protected]; Marc G. Fournier <[email protected]>; pgsql-www
Please clarify what you want done on the majordomo side ... I saw one
comment about unsub'ng everyone ... for archive purposes, this makes
sense, I just want to make sure before I blow them all away (and I will
unsubscribe them without having a blast of emails go out to them) ....
I will also mark the list as 'inactive' ...
On Wed, 25 Mar 2009, Alvaro Herrera wrote:
> Josh Berkus wrote:
>> On 3/25/09 12:17 PM, Alvaro Herrera wrote:
>
>>> http://archives.postgresql.org/pgsql-interfaces/2008-07/msg00002.php
>>
>> That was 6 months ago. I doubt anyone remembers it. Make another
>> announcement, so that when people get the "unsubscribed" announcement,
>> they're not confused.
>
> Done.
>
> --
> Alvaro Herrera http://www.CommandPrompt.com/
> PostgreSQL Replication, Consulting, Custom Development, 24x7 support
>
> --
> Sent via pgsql-www mailing list ([email protected])
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-www
>
----
Marc G. Fournier Hub.Org Networking Services (http://www.hub.org)
Email . [email protected] MSN . [email protected]
Yahoo . yscrappy Skype: hub.org ICQ . 7615664
^ permalink raw reply [nested|flat] 16+ messages in thread
end of thread, other threads:[~2009-03-26 06:24 UTC | newest]
Thread overview: 16+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2009-03-24 16:54 Function C and INOUT parameters Ben Ali Rachid <[email protected]>
2009-03-24 18:11 ` Tom Lane <[email protected]>
2009-03-24 18:11 ` Greg Stark <[email protected]>
2009-03-24 18:21 ` Robert Haas <[email protected]>
2009-03-25 01:03 ` Josh Berkus <[email protected]>
2009-03-25 01:18 ` Tom Lane <[email protected]>
2009-03-25 01:34 ` Josh Berkus <[email protected]>
2009-03-25 11:46 ` Peter Eisentraut <[email protected]>
2009-03-25 15:11 ` shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 18:19 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 19:17 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 19:23 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Josh Berkus <[email protected]>
2009-03-25 21:50 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Alvaro Herrera <[email protected]>
2009-03-25 21:55 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Tom Lane <[email protected]>
2009-03-26 06:24 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Peter Eisentraut <[email protected]>
2009-03-26 03:43 ` Re: shut down pgsql-interfaces (was Re: [HACKERS] Function C and INOUT parameters) Marc G. Fournier <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox