summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-08-16Add appropriate links into the interfaces directory, as well as a MakefileMarc G. Fournier
covering the interfaces directory
1997-08-16Bring in Adrian's JDBC driver as an interfaceMarc G. Fournier
1997-08-14Cleanup global variables, remove stable memory stuff.Bruce Momjian
1997-08-14sprintf "...%d...", ... (int)getpid(), ...Vadim B. Mikheev
^^^^^
1997-08-14_hash_checkpage: cleanup for CASSERTVadim B. Mikheev
1997-08-12These changes allow the module to compile quietly when assert checking isBruce Momjian
not being done.
1997-08-12Remove more (void) and fix -Wall warnings.Bruce Momjian
1997-08-12cleanup of patchBruce Momjian
1997-08-12Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵Bruce Momjian
some (void) casts that are unnecessary.
1997-08-08Add bsdi gcc2 options.Bruce Momjian
1997-08-06Fix for psort again.Bruce Momjian
1997-08-06Another psort fix.Bruce Momjian
1997-08-06I think I finally got psort working for all cases.Bruce Momjian
1997-08-06psort cleanups.Bruce Momjian
1997-08-06Another fix.Bruce Momjian
1997-08-06Fix for palloc(0) in new codeBruce Momjian
1997-08-06Allow internal sorts to be stored in memory rather than in files.Bruce Momjian
1997-08-06Add developers help file.Bruce Momjian
1997-08-06Fix for os version handling.Bruce Momjian
1997-08-06Catch non-functional delete attempts.Vadim B. Mikheev
1997-08-03Cleanup for NAMEDATALEN use.Bruce Momjian
1997-08-03Comment out code that makes no sense, and Purify complains about.Bruce Momjian
1997-08-02Prevent relname unallocated string length from being copied into database.Bruce Momjian
1997-08-02Makei configure less os-version specific, were possible.Bruce Momjian
1997-08-01Fix stout/stderr paging. Do not page \h select, but page \h *.Bruce Momjian
1997-08-01FIx solaris template finding.Bruce Momjian
1997-08-01Fix psql error output.Bruce Momjian
1997-07-31Configure cleanup for /usr/ucb patch.Bruce Momjian
1997-07-30Look in /usr/ucb first for install.Bruce Momjian
1997-07-30configure.in cleanup for tr and strerror2.Bruce Momjian
1997-07-30Add -o to psql manual page.Bruce Momjian
1997-07-30Fix c++ copy example code.Bruce Momjian
1997-07-30Due to BIND 8.1.1, my Solaris 2.5.1 machine doesn't define MAXHOSTNAMELEN...Marc G. Fournier
so, add a check that basically says if it isn't defined, set it to 256...
1997-07-30Check for and use <netdb.h> for postmaster.c, instead of checking ifMarc G. Fournier
MAXHOSTNAMELEN is defined. For some reason, my 2.5.1 Solaris box at work fails on that check...
1997-07-30Allow use parameters in target list having aggregates in functions.Vadim B. Mikheev
1997-07-30configure.in cleanup from sco install.Bruce Momjian
1997-07-30Remove HAVE_USAGE because it is no longer used.Bruce Momjian
1997-07-29Update COPY manual page to remove unneeded warnings.Bruce Momjian
1997-07-29Update configure after sunos4 update.Bruce Momjian
1997-07-29Add strerror to pg_version for sunos4.Bruce Momjian
1997-07-29Results from initial changes to add new functions and for bug fixes.Thomas G. Lockhart
Not all cleaned up yet.
1997-07-29Start adding tests for new geometry functions.Thomas G. Lockhart
Not all cleaned up yet.
1997-07-29Use better routines from geometry library.Thomas G. Lockhart
1997-07-29Change call definition for isreltime().Thomas G. Lockhart
1997-07-29Add new operators and functions for geometric types.Thomas G. Lockhart
Add text concatenation operator and function. Add text trim function for SQL92 support.
1997-07-29Add new routines.Thomas G. Lockhart
Change definition for isreltime(). Change some names of #define constants to avoid conflicts with the yacc parser.
1997-07-29Remove some unnecessary include statements (comment out with #ifdef FALSE).Thomas G. Lockhart
1997-07-29Add routines for text trimming on both ends, substring, and string position.Thomas G. Lockhart
Used to support SQL92 compatibility.
1997-07-29Fix bug to allow hh:mm:ss time entry for timespan/reltime types.Thomas G. Lockhart
1997-07-29Remove #ifdef'd support for old i/o styles.Thomas G. Lockhart
Change box terminology from "length" to "width". Use length terminology in common with other geometric types (usually perimeter). Fix bugs in line arithmetic which resulted in bad intersection calculations. Deprecate temporary unstored slope fields. Check explicitly for intersections at endpoints to avoid rounding ugliness. Add center() routines for lseg, path, polygon. Add distance() routines for circle-polygon, polygon-polygon. Check explicitly for points and polygons contained within polygons using an axis-crossing algorithm. (Old code just checked bounding boxes). Add routine to convert circle-box. *whew*