Re: [HACKERS] postgreSQL-8.0.1 configure --enable-thread-safety with icc-8.1 on RHEL-AS3 Itanium-2 gives error

2005-03-08 Thread Vikram Kalsi
27;t find the thread library functions like pthread_join. > > ------- > > Vikram Kalsi wrote: > > Hi, > > > > I am trying to build postgresql-8.0.1 with icc-8.1.028 on a Linux > > RHEL AS3 SMP Itanium2 mach

[HACKERS] Source Code Help Needed

2005-05-25 Thread Vikram Kalsi
.c>>make_rels_by_joins() So, my question is, after adding the two new variables what other modifications do I need to make for code to work, And later on, what changes are reqd so that I can access these variables while executing the Query Plan in lets say ExecutePlan() and its sub-functions l

Re: [HACKERS] Source Code Help Needed

2005-05-25 Thread Vikram Kalsi
ppropriate code/function(s) which does this copying so that I can add hutz_tbl_benefit and hutz_idx_benefit to that as well. Thanks in anticipation, Regards, On 5/25/05, Tom Lane <[EMAIL PROTECTED]> wrote: > Vikram Kalsi <[EMAIL PROTECTED]> writes: > > 1.) New Variables AD

Re: [HACKERS] Google's Summer of Code ...

2005-06-02 Thread Vikram Kalsi
didn't see PostgreSQL in the list of Participating Organizations on http://code.google.com/summerofcode.html? Thanks and Regards, -Vikram Kalsi MSEE PennState vzk101 at psu dot edu www.personal.psu.edu/vzk101 On 5/25/05, Tom Lane <[EMAIL PROTECTED]> wrote: > Vikram Kalsi <[EMAIL PR

Re: [HACKERS] Source Code Help Needed

2005-06-03 Thread Vikram Kalsi
reas as well, for example the following query doesn't give the expected values as well- select s_suppkey, c_custkey from supplier, customer where s_suppkey>125 and s_suppkey<128 and c_custkey>125 and c_custkey<135 and c_custkey=s_suppkey; I appreciate all the help of this group, Thanks

[HACKERS] postgreSQL-8.0.1 compilation with icc-8.1 on Itanium-2 gives "error: asm statements not supported"

2005-03-02 Thread Vikram Kalsi
Hi, I am trying to compile postgresql-8.0.1 with icc-8.1.028 on a Linux RHEL AS3 SMP Itanium2 machine and I get an error as follows- The complete config.log and make.log is online at http://www.cse.psu.edu/~kalsi/files/ -

Re: [HACKERS] postgreSQL-8.0.1 compilation with icc-8.1 on Itanium-2 gives "error: asm statements not supported"

2005-03-03 Thread Vikram Kalsi
Tom, Peter, I have been able to compile and sucessfully run pgSQL after replacing the asm statement in postgresql-8.0.1/src/include/storage/s_lock.h with an equivalent intrinsic for the Itanium platform- --BEGIN OLD s_lock.h-

[HACKERS] postgreSQL-8.0.1 configure --enable-thread-safety with icc-8.1 on RHEL-AS3 Itanium-2 gives error

2005-03-03 Thread Vikram Kalsi
Hi, I am trying to build postgresql-8.0.1 with icc-8.1.028 on a Linux RHEL AS3 SMP Itanium2 machine and I get an error as follows when I run configure --enable-thread-safety as follows- ---

Re: [HACKERS] postgreSQL-8.0.1 compilation with icc-8.1 on Itanium-2 gives "error: asm statements not supported"

2005-03-05 Thread Vikram Kalsi
: "=r"(ret), "+m"(*lock) : "r"(1) : "memory"); return (int) ret; } #endif /* __INTEL_COMPILER */ #endif /* __ia64__ || __ia64 */ -END NEW s_lock.h------