summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-02-02#if aix changed to #if HAVE_SYS_SELECT_HMarc G. Fournier
1998-02-02Move all the isinf() stuff from float.c to isinf.c, and build it according toMarc G. Fournier
configure vs port specific #ifdef's...
1998-02-01Fix for psort. fixes regression tests.Bruce Momjian
1998-02-01AIX patch from Darren King and Univel patch from Billy Allie, mostlyBruce Momjian
related to grammar and parser issues, with one postmaster fix.
1998-02-01minor change so that it outputs to regression.diffs ...Marc G. Fournier
1998-02-01Make changes so that when the diff is done between 'expected' and 'results',Marc G. Fournier
if an operating specific expected file exists, use that for the comparison. This allows for "legit" differences between results, like the "Result too large" message vs "Math result not representable" ... Also, have the failed diffs get output to regression.diffs so that its easy to view those tests that failed
1998-02-01Missed adding new univel files and removing univel subdirectoryMarc G. Fournier
1998-02-01From: "Billy G. Allie" <Bill.Allie@mug.org>Marc G. Fournier
The following patches will bring the UNIVEL port in line with the new porting model used in postgreSQL 6.3
1998-02-01Reduce size of inlining.Bruce Momjian
1998-02-011. "#ifdef 0" is bad C. ifdef is for checking a macro and 0 isMarc G. Fournier
an illegal macro name. Correct syntax is "#if 0". This is in... From: Darren King <darrenk@insightdist.com>
1998-01-31From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
I haven't had final confirmation from Peter yet, but the attached patch needs to be applied for the Beta otherwise password and crypt authentication just won't work. It puts back the loop in libpq and also fixes a couple of problems with maintaining compatability with pre-6.3 drivers.
1998-01-31From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
I haven't had final confirmation from Peter yet, but the attached patch needs to be applied for the Beta otherwise password and crypt authentication just won't work. It puts back the loop in libpq and also fixes a couple of problems with maintaining compatability with pre-6.3 drivers.
1998-01-31fmgr_faddr cleanupBruce Momjian
1998-01-31fmgr_faddr cleanupBruce Momjian
1998-01-31Inline fmgr_faddr() for speed.Bruce Momjian
1998-01-31Inline fastgetattr and others so data access does not use functionBruce Momjian
calls.
1998-01-30From: PostgreSQL DataBase <postgres@scuba.pcpipeline.com>Marc G. Fournier
This again fixes the problem with the default permissions for PUBLIC and the preventing of statements like "GRANT null on test to test_user;".
1998-01-29don't forget to 'template' i386_solarisMarc G. Fournier
1998-01-29From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
Attached is the patch to fix the warning messages from my code. I also fixed one which wasn't my code. Apart from the usual warnings about the bison/yacc generated code I only have one other warning message. This is in gramm.y around line 2234. I wasn't sure of the fix. I've also replaced all the calls to free() in gramm.y to calls to pfree(). Without these I was getting backend crashes with GRANT. This might already have been fixed.
1998-01-29From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>Marc G. Fournier
I've patched pg_dump.c and createdb to add support for password authentication, using the '-u' switch as in psql. I have updated also the man pages.
1998-01-28psql \df cleanup and lock manual page cleanup.Bruce Momjian
1998-01-28Someone wants to try a Cynus port....Marc G. Fournier
1998-01-28Lock cleanupBruce Momjian
1998-01-28From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier
This has a problem when using any authentication other than trust or ident. Anything using libpq will hang, because the client will go into a loop while connecting. The following patch simply comments out two lines (a do and a while), removing the loop. Going through the new scheme, I can't see why this do..while loop is in there.
1998-01-28More deadlock code to check for escallation locks.Bruce Momjian
offsetof() addition to local socket size.
1998-01-27dummyret cleanupBruce Momjian
1998-01-27Reversed out group by patch.Bruce Momjian
1998-01-27Deadlock ceallnup.Bruce Momjian
(void) change for aix and hp compilers. protocol cleanup.
1998-01-27This should fix Stan's USE_POSIX_SIGNALS problem as wellMarc G. Fournier
1998-01-27From what I can tell, -DNOFIXADE does absolutely nothing under HP/uxMarc G. Fournier
1998-01-27add CC:cc so that configure uses cc on non-gcc machineMarc G. Fournier
From: Stan Brown <stanb@awod.com>
1998-01-27Fix local domain structure size computation.Bruce Momjian
1998-01-27From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
Cleanup patches for previous protocol changes patch
1998-01-27Protocol cleanup from Phil.Bruce Momjian
1998-01-27Real deadlock detection.Bruce Momjian
1998-01-26Try this to fix HP/UX port compileMarc G. Fournier
1998-01-26#include <sys/types.h> required for u_long in <netinet/in.h>Marc G. Fournier
1998-01-26#include <sys/types.h> required for u_longMarc G. Fournier
1998-01-26From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier
I've completed the patch to fix the protocol and authentication issues I was discussing a couple of weeks ago. The particular changes are: - the protocol has a version number - network byte order is used throughout - the pg_hba.conf file is used to specify what method is used to authenticate a frontend (either password, ident, trust, reject, krb4 or krb5) - support for multiplexed backends is removed - appropriate changes to man pages - the -a switch to many programs to specify an authentication service no longer has any effect - the libpq.so version number has changed to 1.1 The new backend still supports the old protocol so old interfaces won't break.
1998-01-26cash_words_out fixBruce Momjian
1998-01-26From: Darren King <darrenk@insightdist.com>Marc G. Fournier
I have always been under the impression that NULL is not equal to NULL and that NULL is not equal to anything else either. If this is the case, then this patch is correct. If NULL _is_ equal to NULL, then I think there are other problems in the Group By logic.
1998-01-25Add cash_words_out and fix \df width.Bruce Momjian
1998-01-25From: todd brandys <brandys@eng3.hep.uiuc.edu>Marc G. Fournier
o The manual (really text) pages for create/alter/drop user.
1998-01-25this is to help someone that wants an AUX port get started...Marc G. Fournier
1998-01-25Patch to document the /etc/psqlrc / ~/.psqlrc config filesMarc G. Fournier
From: <Dr. Andrew C.R. Martin> martin@biochem.ucl.ac.uk
1998-01-25Merge in D'Arcy Cain's python interface (PyGreSQL 2.0)Marc G. Fournier
1998-01-25From: Keith Parks <emkxp01@mtcc.demon.co.uk>Marc G. Fournier
Small patch for sparc solaris/tas()
1998-01-25From: Jeroen van Vianen <jeroenv@design.nl>Marc G. Fournier
This patch solves the problem with multiple order by columns, with the first one having NULL values.
1998-01-25getpid/pid cleanupBruce Momjian
1998-01-25Somehow the 'comment' here got messed upMarc G. Fournier