summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-07-20- fix installation not installing man pagesMarc G. Fournier
- submitted by: drgeorge@ilt.com (Dr_George_D_Detlefsen)
1996-07-20- extend conditional for use of -ltermcap in bsdi/bsdi_2_1 compilesMarc G. Fournier
- submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-20fixed a bug with not commenting out FSYNC= in initdb.shMarc G. Fournier
1996-07-19Fixes:Marc G. Fournier
I have written some patches which add support for NULLs to Postgres95. In fact support for NULLs was already present in postgres, but it had been disabled because not completely debugged, I believe. My patches simply add some checks here and there. To enable the new code you must add -DNULL_PATCH to CFLAGS in Makefile.global. After recompiling you can do things like: insert into a (x, y) values (1, NULL); update a set x = NULL where x = 0; You can't still use a "where x=NULL" clause, you must use ISNULL instead. This could probably be an easy fix to do. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-07-19- improve date/time parsing routinesMarc G. Fournier
- submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-07-19Fixes:Marc G. Fournier
Select queries with an isnull or notnull clause, like "select * where somefield isnull", crash the backend if the table has at least one index. If the indices are deleted the queries work again. Also the explain command fail in the same way. The is caused by a bug in subroutine of the optimizer which doesn't check null values in the clauses. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-07-19- libpq calls "fe_getauthname()" two times in "fe-connect.c", butMarc G. Fournier
doesn't free the buffer allocated by this function. - submitted by: Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
1996-07-19- added -ltermcap to LIBS in bin/psql/MakefileMarc G. Fournier
- submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-19Removed -I${HEADERFILE} from bin/Makefile.globalMarc G. Fournier
1996-07-19Fix PAGER bug in createuser/etc scriptsMarc G. Fournier
submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-19Fixes:Marc G. Fournier
'select distinct on' causes backend to crash submitted by: Chris Dunlop chris@onthe.net.au
1996-07-19Fixes:Marc G. Fournier
This is a patch to prevent an endless loop occuring in the Postgres backend when a 'warning' error condition generates another warning error contition in the handler code. Submitted by: Chris Dunlop, <chris@onthe.net.au>
1996-07-19fixes for textcat(), but headers were missing from archive :(Marc G. Fournier
1996-07-19Fixes compile errors with irix5 portMarc G. Fournier
Submitted by: Thomas van Reimersdahl <reimersd@dali.techinfo.rwth-aachen.de>
1996-07-19Fixes:Marc G. Fournier
minor Makefile changes to force setting of SRCDIR and ordering of include files Submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-19Fixes:Marc G. Fournier
It is not possible to define attributes as arrays of date or time, the type _time and _date are not defined. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-07-19Fixes:Marc G. Fournier
The type _char16 (array of char16) is incorrectly defined as array of name and values longer than 16 chars are stored as names and not truncated to 16 bytes as they should be. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-07-18libpq and psql.c have been modified to do various things they didn't doMarc G. Fournier
before (plus some optimisations/bug fixes et al). I've included a small demo transcript below. Note that all of of the display functionality/intelligence you see here, can be had merely by calling the new LIBPQ PQprint() routine with the appropriate arguments/options, including the HTML3 output guff. submitted by: Julian Assange <proff@suburbia.net>
1996-07-18Fixes: In the solaris port the file descriptors are hard coded to 20 (from theMarc G. Fournier
include file sys/param.h Submitted by: michael.siebenborn@ae3.Hypo.DE (Michael Siebenborn (6929))
1996-07-16fix: BSDi 2.1 requires a port seperate from BSDi 2.0{.1}Marc G. Fournier
submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-16fix: clean up formatting of \d tablename in psqlMarc G. Fournier
submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-16fix: During a BSD/OS(BSDI) 2.1 compile, I got errors about undefinedMarc G. Fournier
S_LOCK_'s during the postgres link phase. submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-16applied fixes for psqlMarc G. Fournier
- \p produces traditional results - \r added submitted by: Bruce Momjian (root@candle.pha.pa.us)
1996-07-15adds: case insensitive regexp for varcharMarc G. Fournier
From: azcb0@sde.uts.amdahl.com
1996-07-15fsync patch from openlinkMarc G. Fournier
NOTE: FSYNC needs to be set at top of initdb.sh to enable use of fsync patches...disabled by default
1996-07-15fsync patch from openlinkMarc G. Fournier
1996-07-15Submitted by Openlink, requires -DOPENLINK_PATCHES in Makefile.globalMarc G. Fournier
varchar.diff ------------ This patch was necessary for the OpenLink Postgres Database Agent. I think this fixes a bug anyway. The following query demonstrates this bug: create table foo (bar varchar); insert into foo values (''); -- no problem select * from foo where bar = ''; -- fails
1996-07-15Makefile.global changes to show option -DOPENLINK_PATCHESMarc G. Fournier
1996-07-13Moved two defines required for FreeBSD into Makefile.globalMarc G. Fournier
The idea is that its right beside PORTNAME, so if it doesn't apply to the OS in question, it can be rememberd to disable it...
1996-07-12Brought in extensions to pg_dumpMarc G. Fournier
Submitted by: david bennett <dave@bensoft.com> marc g. fournier <scrappy@ki.net>
1996-07-12fixes for several potential null pointer dereferencesMarc G. Fournier
submitted by: Paul "Shag" Walmsley <ccshag@cclabs.missouri.edu>
1996-07-09Fixes: Using LIKE or ~ operator on text type files which are null valuedMarc G. Fournier
causes segmentation fault. Thanks to: Salvador Ortiz Garcia, Robert Patrick, Paul 'Shag' Walmsley, and James Cooper for finding and fixing the problem.
1996-07-09Fix: Can't drop tables with names longer than 16 characters.Marc G. Fournier
1996-07-09Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier