Re: [BUGS] ISM shared memory on solaris

2003-10-27 Thread Josh Wilmes
Seems like the BEST case would be to have a configure test verify that it works and define something if it does, but i don't know what such a test would look like. --Josh Bruce Momjian wrote: Tom Lane wrote: Bruce Momjian <[EMAIL PROTECTED]> writes: ! #if defined(sun) && defined(__sparc__)

Re: [BUGS] Transaction bug

2003-10-27 Thread Tom Lane
Brage =?iso-8859-1?Q?F=F8rland?= <[EMAIL PROTECTED]> writes: > If you send a transaction as a single query to the backend, it ignores the > commit if the transaction is aborted: This is not a bug, it is the intended behavior. An error causes processing of the current querystring to be abandoned.

Re: [BUGS] ISM shared memory on solaris

2003-10-27 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > > ! #if defined(sun) && defined(__sparc__) > > /* use intimate shared memory on SPARC Solaris */ > > memAddress = shmat(shmid, 0, SHM_SHARE_MMU); > > #else > > I think this is going in the wrong direction. Why isn't the co

Re: [BUGS] ISM shared memory on solaris

2003-10-27 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > ! #if defined(sun) && defined(__sparc__) > /* use intimate shared memory on SPARC Solaris */ > memAddress = shmat(shmid, 0, SHM_SHARE_MMU); > #else I think this is going in the wrong direction. Why isn't the code just #if defined(SHM_SHA

Re: [BUGS] PostgreSQL Patch: Test-and-set routine for HP-UX (IA-64)

2003-10-27 Thread Tom Lane
"ViSolve Open Source Team" <[EMAIL PROTECTED]> writes: > There are actually two issues: > 1. There is currently no tas (test-and-set) routine for HP-UX IA-64 in the > s_lock.h header file. > 2. In HP-UX IA-64, the suffix of shared libraries is ".so", but PostgreSQL > generates a ".sl" suffix. >

Re: [BUGS] minor: ~ not resolved in psql

2003-10-27 Thread Rod Taylor
> Please enter a FULL description of your problem: > > When opening a file in psql, ~ (the user's home dir) is resolved when > using tab completion to find the file, but when you hit enter and psql > actualy tries to open it, you get a file not found

[BUGS] minor: ~ not resolved in psql

2003-10-27 Thread Bas Scheffers
POSTGRESQL BUG REPORT TEMPLATE Your name : Bas Scheffers Your email address : [EMAIL PROTECTED] Sy

[BUGS] Transaction bug

2003-10-27 Thread Brage Førland
If you send a transaction as a single query to the backend, it ignores the commit if the transaction is aborted: Example: testdb=# CREATE TEMP TABLE test(test INT PRIMARY KEY, CONSTRAINT testconstraint CHECK (test > 2) ); NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index 'test_pkey