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__)
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.
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
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
"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.
>
> 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
POSTGRESQL BUG REPORT TEMPLATE
Your name : Bas Scheffers
Your email address : [EMAIL PROTECTED]
Sy
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