summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Collapse)AuthorAgeFilesLines
* Brought in NEOSOFT's port to i386_solarisMarc G. Fournier1996-07-2010-12/+186
| | | | Submitted by: Randy Kunkee <kunkee@Starbase.NeoSoft.COM>
* Fixes:Marc G. Fournier1996-07-202-2/+14
| | | | | | Hash indices for some data types don't work, for example for time and date. - submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Fixes:Marc G. Fournier1996-07-202-2/+61
| | | | | | | | | | | The updating of array fields is broken in Postgres95-1.01, An array can be only replaced with a new array but not have some elements modified. This is caused by two bugs in the parser and in the array utilities. Furthermore it is not possible to update array with a base type of variable length. - submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Fixes:Marc G. Fournier1996-07-194-4/+34
| | | | | | | | | | | | | | | | | | | 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>
* - improve date/time parsing routinesMarc G. Fournier1996-07-191-9/+32
| | | | - submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Fixes:Marc G. Fournier1996-07-192-9/+9
| | | | | | | | | | | 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>
* Fixes:Marc G. Fournier1996-07-191-4/+4
| | | | | | 'select distinct on' causes backend to crash submitted by: Chris Dunlop chris@onthe.net.au
* Fixes:Marc G. Fournier1996-07-192-6/+12
| | | | | | | | 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>
* fixes for textcat(), but headers were missing from archive :(Marc G. Fournier1996-07-191-18/+29
|
* Fixes compile errors with irix5 portMarc G. Fournier1996-07-191-0/+1
| | | | Submitted by: Thomas van Reimersdahl <reimersd@dali.techinfo.rwth-aachen.de>
* Fixes:Marc G. Fournier1996-07-191-1/+3
| | | | | | | 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>
* Fixes:Marc G. Fournier1996-07-191-2/+2
| | | | | | | | 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>
* Fixes: In the solaris port the file descriptors are hard coded to 20 (from theMarc G. Fournier1996-07-181-1/+6
| | | | | | include file sys/param.h Submitted by: michael.siebenborn@ae3.Hypo.DE (Michael Siebenborn (6929))
* fix: BSDi 2.1 requires a port seperate from BSDi 2.0{.1}Marc G. Fournier1996-07-1613-22/+96
| | | | submitted by: Bruce Momjian (root@candle.pha.pa.us)
* fix: During a BSD/OS(BSDI) 2.1 compile, I got errors about undefinedMarc G. Fournier1996-07-161-2/+2
| | | | | | S_LOCK_'s during the postgres link phase. submitted by: Bruce Momjian (root@candle.pha.pa.us)
* adds: case insensitive regexp for varcharMarc G. Fournier1996-07-151-1/+3
| | | | From: azcb0@sde.uts.amdahl.com
* fsync patch from openlinkMarc G. Fournier1996-07-154-7/+65
|
* Submitted by Openlink, requires -DOPENLINK_PATCHES in Makefile.globalMarc G. Fournier1996-07-151-1/+11
| | | | | | | | | | | | | 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
* Fixes: Using LIKE or ~ operator on text type files which are null valuedMarc G. Fournier1996-07-092-2/+8
| | | | | | | causes segmentation fault. Thanks to: Salvador Ortiz Garcia, Robert Patrick, Paul 'Shag' Walmsley, and James Cooper for finding and fixing the problem.
* Fix: Can't drop tables with names longer than 16 characters.Marc G. Fournier1996-07-091-5/+5
|
* Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier1996-07-09650-0/+171435