[HACKERS] Re: 7.1 on DEC/Alpha

2000-12-25 Thread Brent Verner
On 24 Dec 2000 at 01:19 (-0500), Tom Lane wrote: | Brent Verner <[EMAIL PROTECTED]> writes: | > (gdb) p *resSlot | > Error accessing memory address 0x40141830: Invalid argument. | | Oooh. resSlot has been truncated to 32 bits --- judging by the other | nearby pointer values, it almost certainly

Re: [HACKERS] Re: 7.1 on DEC/Alpha

2000-12-24 Thread Brent Verner
On 24 Dec 2000 at 00:47 (-0500), Tom Lane wrote: | | > I'll send the patch that allows me to | > cleanly build with gcc. right now, s_lock.h does the wrong thing | > when compiling on Alpha/OSF with gcc. | | Roger, we want to build with either. The attached patch _seems_ to do the right thing.

[HACKERS] Re: 7.1 on DEC/Alpha

2000-12-23 Thread Tom Lane
Brent Verner <[EMAIL PROTECTED]> writes: > (gdb) p *resSlot > Error accessing memory address 0x40141830: Invalid argument. Oooh. resSlot has been truncated to 32 bits --- judging by the other nearby pointer values, it almost certainly should have been 0x140141830. Now we have a lead. I am guess

Re: [HACKERS] Re: 7.1 on DEC/Alpha

2000-12-23 Thread Tom Lane
Brent Verner <[EMAIL PROTECTED]> writes: > here's a post-mortem. > #0 0x1200ce58c in ExecEvalFieldSelect (fselect=0x1401615c0, > econtext=0x14016a030, isNull=0x14016ab31 "", isDone=0x0) at execQual.c:1096 Looks reasonable as far as it goes. Evidently the crash is in the heap_getattr macro

[HACKERS] Re: 7.1 on DEC/Alpha

2000-12-23 Thread Brent Verner
here's a post-mortem. #0 0x1200ce58c in ExecEvalFieldSelect (fselect=0x1401615c0, econtext=0x14016a030, isNull=0x14016ab31 "", isDone=0x0) at execQual.c:1096 #1 0x1200ceafc in ExecEvalExpr (expression=0x1401615f0, econtext=0x0, isNull=0x14016ab31 "", isDone=0x0) at execQual.c:1234 #2

[HACKERS] Re: 7.1 on DEC/Alpha

2000-12-22 Thread Brent Verner
On 22 Dec 2000 at 21:58 (-0500), Brent Verner wrote: | On 22 Dec 2000 at 20:27 (-0500), Brent Verner wrote: | | observation: | | commenting out the queries with 'FROM person* p' causes the misc | regression test to pass. that's not what I meant to say. the misc test still FAILS, but it no

[HACKERS] Re: 7.1 on DEC/Alpha

2000-12-22 Thread Brent Verner
On 22 Dec 2000 at 20:27 (-0500), Brent Verner wrote: observation: commenting out the queries with 'FROM person* p' causes the misc regression test to pass. SELECT p.name, p.hobbies.name FROM person* p; Brent | Hi, | I saw the thread from a few days ago about Linux/Alpha and 7.1. I