summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1998-02-03Define boolean functions for lseg <, <=, <>, >=, >Thomas G. Lockhart
Define close_ls(), close_lseg(), lseg_length(). Write real code for close_sb(), close_pb(), inter_sb(), inter_lb(). Repair lseg_perp() which determines if two lsegs are perpendicular. Repair lseg_dt() distance between two lsegs. Note: close_sl() is clearly broken but will repair later (calculating point on lseg rather than point on line).
1998-02-03Use proper symbol for hpuxMarc G. Fournier
1998-02-03Just another dummy fileMarc G. Fournier
1998-02-03Fix for various aix related 'mis-defines'Marc G. Fournier
From: Darren King <darrenk@insightdist.com>
1998-02-03Fix for missing tas.s under sparc_solarisMarc G. Fournier
Reported by: Shiby Thomas <sthomas@cise.ufl.edu>
1998-02-03Parser cleanup for expr and subqueries.Bruce Momjian
1998-02-03Clean up the alpha port, remove the backend/port/alpha subdirectoryMarc G. Fournier
structure, and move the init_address_fixup() code directly into backend/main/main.c with appropriate #ifdefs around it...
1998-02-03Fixes for linux-elf-sparc related template fileMarc G. Fournier
From: "Thomas A. Szybist" <szybist@boxhill.com>
1998-02-03From: teunis <teunis@mauve.computersupportcentre.com>Marc G. Fournier
Slight cleanups for glibc2.0
1998-02-02Add an irix5.c dummy file for irix5 portMarc G. Fournier
1998-02-02From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier
[This is a repost - it supercedes the previous one. It fixes the patch so it doesn't bread aix port, plus there's a file missing out of the original post because difforig doesn't pick up new files. It's now attached. peter] This patch brings the JDBC driver up to the current protocol spec. Basically, the backend now tells the driver what authentication scheme to use. The patch also fixes a performance problem with large objects. In the buffer manager, each fastpath call was sending multiple Notifications to the backend (sometimes more data in the form of notifications were being sent than blob data!).
1998-02-02Fix up the alpha port/dynloader for configureMarc G. Fournier
1998-02-02Fix for ltoa() problem pointed out by Stan Brown <stanb@awod.com>Marc G. Fournier
1998-02-02set "caller" value in parse_func.h to func_get_detail instead of just ""Marc G. Fournier
1998-02-02Current output for FreeBSD (2/1/98)Marc G. Fournier
1998-02-02No datedebug printing of date debug is not defined.Bruce Momjian
1998-02-02Fix HP/ux port for tas.sMarc G. Fournier
1998-02-02Fixes:Marc G. Fournier
dynloader.c:25: port-protos.h: No such file or directory In HPUX port
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