Win32 WEXITSTATUS too simplistic

Started by Tom Laneover 19 years ago57 messageshackerspatches
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us
hackerspatches

win32.h says

/*
* Signal stuff
* WIN32 doesn't have wait(), so the return value for children
* is simply the return value specified by the child, without
* any additional information on whether the child terminated
* on its own or via a signal. These macros are also used
* to interpret the return value of system().
*/
#define WEXITSTATUS(w) (w)
#define WIFEXITED(w) (true)
#define WIFSIGNALED(w) (false)
#define WTERMSIG(w) (0)

I think this supposition has been pretty much proven false by recent
reports of silly "exit code" numbers from Win32 users, as for instance
here
http://archives.postgresql.org/pgsql-bugs/2006-12/msg00163.php
where the postmaster reports
server process exited with exit code -1073741819
from what I suspect is really the equivalent of a SIGSEGV trap,
ie, attempted access to already-deallocated memory. My calculator
says the above is equivalent to hex C0000005, and I say that this
makes it pretty clear that *some* parts of Windows put flag bits into
the process exit code. Anyone want to run down what we should really
be using instead of the above macros?

regards, tom lane

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Tom Lane (#1)
hackerspatches
Re: Win32 WEXITSTATUS too simplistic

Tom Lane wrote:

win32.h says

/*
* Signal stuff
* WIN32 doesn't have wait(), so the return value for children
* is simply the return value specified by the child, without
* any additional information on whether the child terminated
* on its own or via a signal. These macros are also used
* to interpret the return value of system().
*/
#define WEXITSTATUS(w) (w)
#define WIFEXITED(w) (true)
#define WIFSIGNALED(w) (false)
#define WTERMSIG(w) (0)

I think this supposition has been pretty much proven false by recent
reports of silly "exit code" numbers from Win32 users, as for instance
here
http://archives.postgresql.org/pgsql-bugs/2006-12/msg00163.php
where the postmaster reports
server process exited with exit code -1073741819
from what I suspect is really the equivalent of a SIGSEGV trap,
ie, attempted access to already-deallocated memory. My calculator
says the above is equivalent to hex C0000005, and I say that this
makes it pretty clear that *some* parts of Windows put flag bits into
the process exit code. Anyone want to run down what we should really
be using instead of the above macros?

The exit code is apparently what is reported from GetExitCodeProcess().
For info on that see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/getexitcodeprocess.asp

I think we are possibly seeing the third case, i.e. the code from an
unhandled exception. I haven't managed to find an API to handle them
though ...

cheers

andrew

#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andrew Dunstan (#2)
hackerspatches
Re: Win32 WEXITSTATUS too simplistic

"Andrew Dunstan" <andrew@dunslane.net> writes:

Tom Lane wrote:

Anyone want to run down what we should really
be using instead of the above macros?

The exit code is apparently what is reported from GetExitCodeProcess().
For info on that see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/getexitcodeprocess.asp

I think we are possibly seeing the third case, i.e. the code from an
unhandled exception. I haven't managed to find an API to handle them
though ...

Right ... but I don't think we want to "handle the exception". The
right question to be asking is "what is the encoding of these 'exception
values' it's talking about?"

regards, tom lane

#4Andrew Dunstan
andrew@dunslane.net
In reply to: Tom Lane (#3)
hackerspatches
Re: Win32 WEXITSTATUS too simplistic

Tom Lane wrote:

"Andrew Dunstan" <andrew@dunslane.net> writes:

Tom Lane wrote:

Anyone want to run down what we should really
be using instead of the above macros?

The exit code is apparently what is reported from GetExitCodeProcess().
For info on that see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/getexitcodeprocess.asp

I think we are possibly seeing the third case, i.e. the code from an
unhandled exception. I haven't managed to find an API to handle them
though ...

Right ... but I don't think we want to "handle the exception". The
right question to be asking is "what is the encoding of these 'exception
values' it's talking about?"

Yes, sorry for my loose expression. That's what I meant - I didn't find an
API that would translate the exception values.

cheers

andrew

#5ITAGAKI Takahiro
itagaki.takahiro@oss.ntt.co.jp
In reply to: Tom Lane (#1)
hackerspatches
Re: Win32 WEXITSTATUS too simplistic

Tom Lane <tgl@sss.pgh.pa.us> wrote:

server process exited with exit code -1073741819
from what I suspect is really the equivalent of a SIGSEGV trap,
ie, attempted access to already-deallocated memory. My calculator
says the above is equivalent to hex C0000005, and I say that this
makes it pretty clear that *some* parts of Windows put flag bits into
the process exit code. Anyone want to run down what we should really
be using instead of the above macros?

C0000005 equals to EXCEPTION_ACCESS_VIOLATION. The value returned by
GetExceptionCode() seems to be the exit code in unhandeled exception cases.

AFAICS, all EXCEPTION_xxx (or STATUS_xxx) values are defined as 0xCxxxxxxx.
I think we can use the second high bit to distinguish exit by exception
from normal exits.

#define WEXITSTATUS(w) ((int) ((w) & 0x40000000))
#define WIFEXITED(w) ((w) & 0x40000000) == 0)
#define WIFSIGNALED(w) ((w) & 0x40000000) != 0)
#define WTERMSIG(w) (w) // or ((w) & 0x3FFFFFFF)

However, it comes from reverse engineering of the headers of Windows.
I cannot find any official documentation.

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center

#6Bruce Momjian
bruce@momjian.us
In reply to: ITAGAKI Takahiro (#5)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too simplistic

I did some research on this, and found a nice Win32 list of STATUS_
error values. Looking at the list, I think the non-exit() return values
are much larger than just the second high bit.

I am proposing the attached patch, which basically has all system()
return values < 0x100 as exit() calls, and everything above that as a
signal exits. I also think it is too risky to backpatch to 8.2.X.

Also, should we print Win32 WTERMSIG() values as hex because they are so
large? I have added that to the patch.

---------------------------------------------------------------------------

ITAGAKI Takahiro wrote:

Tom Lane <tgl@sss.pgh.pa.us> wrote:

server process exited with exit code -1073741819
from what I suspect is really the equivalent of a SIGSEGV trap,
ie, attempted access to already-deallocated memory. My calculator
says the above is equivalent to hex C0000005, and I say that this
makes it pretty clear that *some* parts of Windows put flag bits into
the process exit code. Anyone want to run down what we should really
be using instead of the above macros?

C0000005 equals to EXCEPTION_ACCESS_VIOLATION. The value returned by
GetExceptionCode() seems to be the exit code in unhandeled exception cases.

AFAICS, all EXCEPTION_xxx (or STATUS_xxx) values are defined as 0xCxxxxxxx.
I think we can use the second high bit to distinguish exit by exception
from normal exits.

#define WEXITSTATUS(w) ((int) ((w) & 0x40000000))
#define WIFEXITED(w) ((w) & 0x40000000) == 0)
#define WIFSIGNALED(w) ((w) & 0x40000000) != 0)
#define WTERMSIG(w) (w) // or ((w) & 0x3FFFFFFF)

However, it comes from reverse engineering of the headers of Windows.
I cannot find any official documentation.

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

Attachments:

/pgpatches/win32text/x-diffDownload+35-28
#7Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#6)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

I have applied a modified version of this patch. We now print the
exception value in hex, and give a URL where the exception can be looked
up.

---------------------------------------------------------------------------

Bruce Momjian wrote:

I did some research on this, and found a nice Win32 list of STATUS_
error values. Looking at the list, I think the non-exit() return values
are much larger than just the second high bit.

I am proposing the attached patch, which basically has all system()
return values < 0x100 as exit() calls, and everything above that as a
signal exits. I also think it is too risky to backpatch to 8.2.X.

Also, should we print Win32 WTERMSIG() values as hex because they are so
large? I have added that to the patch.

---------------------------------------------------------------------------

ITAGAKI Takahiro wrote:

Tom Lane <tgl@sss.pgh.pa.us> wrote:

server process exited with exit code -1073741819
from what I suspect is really the equivalent of a SIGSEGV trap,
ie, attempted access to already-deallocated memory. My calculator
says the above is equivalent to hex C0000005, and I say that this
makes it pretty clear that *some* parts of Windows put flag bits into
the process exit code. Anyone want to run down what we should really
be using instead of the above macros?

C0000005 equals to EXCEPTION_ACCESS_VIOLATION. The value returned by
GetExceptionCode() seems to be the exit code in unhandeled exception cases.

AFAICS, all EXCEPTION_xxx (or STATUS_xxx) values are defined as 0xCxxxxxxx.
I think we can use the second high bit to distinguish exit by exception
from normal exits.

#define WEXITSTATUS(w) ((int) ((w) & 0x40000000))
#define WIFEXITED(w) ((w) & 0x40000000) == 0)
#define WIFSIGNALED(w) ((w) & 0x40000000) != 0)
#define WTERMSIG(w) (w) // or ((w) & 0x3FFFFFFF)

However, it comes from reverse engineering of the headers of Windows.
I cannot find any official documentation.

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

Attachments:

/rtmp/difftext/x-diffDownload+57-42
#8Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#7)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Bruce Momjian wrote:

I have applied a modified version of this patch. We now print the
exception value in hex, and give a URL where the exception can be looked
up.

Humm, wouldn't it be more appropriate to put the URL in a errhint()
instead?

+ 		ereport(lev,
+ 
+ 		/*------
+ 		  translator: %s is a noun phrase describing a child process, such as
+ 		  "server process" */
+ 				(errmsg("%s (PID %d) was terminated by exception %X\nSee http://source.winehq.org/source/include/ntstatus.h for a description\nof the hex value.",
+ 						procname, pid, WTERMSIG(exitstatus))));
+ #endif

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

#9Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#8)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Alvaro Herrera wrote:

Bruce Momjian wrote:

I have applied a modified version of this patch. We now print the
exception value in hex, and give a URL where the exception can be looked
up.

Humm, wouldn't it be more appropriate to put the URL in a errhint()
instead?

+ 		ereport(lev,
+ 
+ 		/*------
+ 		  translator: %s is a noun phrase describing a child process, such as
+ 		  "server process" */
+ 				(errmsg("%s (PID %d) was terminated by exception %X\nSee http://source.winehq.org/source/include/ntstatus.h for a description\nof the hex value.",
+ 						procname, pid, WTERMSIG(exitstatus))));
+ #endif

Oops, forgot to mention that detail. We are using log_error() in one
case, and ereport() in another. Let me do the hint in the report case,
but I have to leave the log_error case alone because it takes only three
arguments.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#10Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alvaro Herrera (#8)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Alvaro Herrera <alvherre@commandprompt.com> writes:

Bruce Momjian wrote:

I have applied a modified version of this patch. We now print the
exception value in hex, and give a URL where the exception can be looked
up.

Humm, wouldn't it be more appropriate to put the URL in a errhint()
instead?

It should not be there at all. Do you see URLs in any of our other
error messages?

regards, tom lane

#11Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#10)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Tom Lane wrote:

Alvaro Herrera <alvherre@commandprompt.com> writes:

Bruce Momjian wrote:

I have applied a modified version of this patch. We now print the
exception value in hex, and give a URL where the exception can be looked
up.

Humm, wouldn't it be more appropriate to put the URL in a errhint()
instead?

It should not be there at all. Do you see URLs in any of our other
error messages?

Sure, ideally, but how else can we give information about that hex
value?

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#12Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#11)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Bruce Momjian <bruce@momjian.us> writes:

Tom Lane wrote:

It should not be there at all. Do you see URLs in any of our other
error messages?

Sure, ideally, but how else can we give information about that hex
value?

It's not the responsibility of that error message to tell someone to
go look up the error number in Microsoft documentation. If they're
clueful enough to make any sense of the number beyond the strerror
translation we already provide, then they already know where to look.

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

regards, tom lane

#13Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#12)
hackerspatches
Re: [HACKERS] Win32 WEXITSTATUS too

Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

Tom Lane wrote:

It should not be there at all. Do you see URLs in any of our other
error messages?

Sure, ideally, but how else can we give information about that hex
value?

It's not the responsibility of that error message to tell someone to
go look up the error number in Microsoft documentation. If they're
clueful enough to make any sense of the number beyond the strerror
translation we already provide, then they already know where to look.

Well, it took me like 25 minutes to find that list, so it isn't obvious.
Search for STATUS_CARDBUS_NOT_SUPPORTED, and you get only 75 hits on
Google, and our URL is #7. One idea Andrew Dunstan had was to print
descriptions for the most popular values. I asked him to give it a try
once I applied this patch.

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

It is a URL to the Wine CVS repository, so I assume it will be around for
a while. One thing we could do is copy that file to a URL on our web
site and point error messages to that. We could put the file in our CVS
and point to that too.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#14Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#13)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Alvaro Herrera wrote:

Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

Tom Lane wrote:

It should not be there at all. Do you see URLs in any of our other
error messages?

Sure, ideally, but how else can we give information about that hex
value?

It's not the responsibility of that error message to tell someone to
go look up the error number in Microsoft documentation. If they're
clueful enough to make any sense of the number beyond the strerror
translation we already provide, then they already know where to look.

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

I agree; more so given that the URL points to the Wine project pages.
And it's not user documentation, but source code, which makes it less
appropriate.

OK, so what suggestion do you have? I just proposed a few of them in my
previous email.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#15Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#14)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

bruce wrote:

Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

Tom Lane wrote:

It should not be there at all. Do you see URLs in any of our other
error messages?

Sure, ideally, but how else can we give information about that hex
value?

It's not the responsibility of that error message to tell someone to
go look up the error number in Microsoft documentation. If they're
clueful enough to make any sense of the number beyond the strerror
translation we already provide, then they already know where to look.

Well, it took me like 25 minutes to find that list, so it isn't obvious.
Search for STATUS_CARDBUS_NOT_SUPPORTED, and you get only 75 hits on
Google, and our URL is #7. One idea Andrew Dunstan had was to print
descriptions for the most popular values. I asked him to give it a try
once I applied this patch.

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

It is a URL to the Wine CVS repository, so I assume it will be around for
a while. One thing we could do is copy that file to a URL on our web
site and point error messages to that. We could put the file in our CVS
and point to that too.

FYI, here are the URL's I mention in our source code:

* Wine (URL used in our error messages) -
* http://source.winehq.org/source/include/ntstatus.h
* Descriptions - http://www.comp.nus.edu.sg/~wuyongzh/my_doc/ntstatus.txt
* MS SDK - http://www.nologs.com/ntstatus.html

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#16Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#14)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

I agree; more so given that the URL points to the Wine project pages.
And it's not user documentation, but source code, which makes it less
appropriate.

OK, so what suggestion do you have? I just proposed a few of them in my
previous email.

A good place for the URL might be in the win32 specific FAQ?

//Magnus

#17Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#15)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Bruce Momjian <bruce@momjian.us> writes:

FYI, here are the URL's I mention in our source code:

* Wine (URL used in our error messages) -
* http://source.winehq.org/source/include/ntstatus.h
* Descriptions - http://www.comp.nus.edu.sg/~wuyongzh/my_doc/ntstatus.txt
* MS SDK - http://www.nologs.com/ntstatus.html

I don't have a problem with mentioning those in a source code comment.
I question the wisdom of putting any of them in the error message ...
especially seeing that you haven't even found an "official" Microsoft
page to link to. None of those look to me like they're stable enough
to expect to still be there in three or four years.

regards, tom lane

#18Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#16)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Magnus Hagander wrote:

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

I agree; more so given that the URL points to the Wine project pages.
And it's not user documentation, but source code, which makes it less
appropriate.

OK, so what suggestion do you have? I just proposed a few of them in my
previous email.

A good place for the URL might be in the win32 specific FAQ?

The list is 1160 lines long, though, so I think it deserves its own URL.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#19Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#18)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Bruce Momjian wrote:

Magnus Hagander wrote:

Even if it were the responsibility of the error message to suggest this,
a URL seems far too transient.

I agree; more so given that the URL points to the Wine project pages.
And it's not user documentation, but source code, which makes it less
appropriate.

OK, so what suggestion do you have? I just proposed a few of them in my
previous email.

A good place for the URL might be in the win32 specific FAQ?

The list is 1160 lines long, though, so I think it deserves its own URL.

Yes. I meant putting the URL in the FAQ, not the contents of the list.

//Magnus

#20Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#17)
patches
Re: [HACKERS] Win32 WEXITSTATUS too

Tom Lane wrote:

Bruce Momjian <bruce@momjian.us> writes:

FYI, here are the URL's I mention in our source code:

* Wine (URL used in our error messages) -
* http://source.winehq.org/source/include/ntstatus.h
* Descriptions - http://www.comp.nus.edu.sg/~wuyongzh/my_doc/ntstatus.txt
* MS SDK - http://www.nologs.com/ntstatus.html

I don't have a problem with mentioning those in a source code comment.
I question the wisdom of putting any of them in the error message ...
especially seeing that you haven't even found an "official" Microsoft
page to link to. None of those look to me like they're stable enough
to expect to still be there in three or four years.

Agreed. I propose we put the file in src/tools/msvc and link to our CVS
source tree or something.

--
Bruce Momjian bruce@momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

#21Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#19)
patches
#22Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#20)
patches
#23Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#22)
patches
#24Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#23)
patches
#25Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alvaro Herrera (#24)
patches
#26Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#25)
patches
#27Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#13)
hackerspatches
#28Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Bruce Momjian (#26)
patches
#29Bruce Momjian
bruce@momjian.us
In reply to: Tsunakawa, Takayuki (#28)
patches
#30Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#27)
hackerspatches
#31Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Bruce Momjian (#29)
patches
#32Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Bruce Momjian (#30)
hackerspatches
#33Bruce Momjian
bruce@momjian.us
In reply to: Tsunakawa, Takayuki (#32)
hackerspatches
#34Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Bruce Momjian (#33)
hackerspatches
#35Bruce Momjian
bruce@momjian.us
In reply to: Tsunakawa, Takayuki (#34)
hackerspatches
#36Joshua D. Drake
jd@commandprompt.com
In reply to: Bruce Momjian (#35)
hackerspatches
#37Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#33)
hackerspatches
#38Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Tsunakawa, Takayuki (#32)
hackerspatches
#39Magnus Hagander
magnus@hagander.net
In reply to: Tsunakawa, Takayuki (#38)
hackerspatches
#40Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#39)
hackerspatches
#41Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#40)
hackerspatches
#42Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#41)
hackerspatches
#43Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#42)
hackerspatches
#44Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#43)
hackerspatches
#45Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#44)
hackerspatches
#46Bruce Momjian
bruce@momjian.us
In reply to: Tsunakawa, Takayuki (#38)
hackerspatches
#47Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#44)
hackerspatches
#48Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#45)
hackerspatches
#49Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#46)
hackerspatches
#50Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#47)
hackerspatches
#51Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#49)
hackerspatches
#52Magnus Hagander
magnus@hagander.net
In reply to: Bruce Momjian (#50)
hackerspatches
#53Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#52)
hackerspatches
#54Bruce Momjian
bruce@momjian.us
In reply to: Magnus Hagander (#52)
hackerspatches
#55Chuck McDevitt
cmcdevitt@greenplum.com
In reply to: Bruce Momjian (#48)
hackerspatches
#56Andrew Dunstan
andrew@dunslane.net
In reply to: Chuck McDevitt (#55)
hackerspatches
#57Bruce Momjian
bruce@momjian.us
In reply to: Chuck McDevitt (#55)
hackerspatches