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