• R/O
  • HTTP
  • SSH
  • HTTPS

syncrep: List of commits

PostgreSQL9.0用の同期レプリケーションパッチ


RSS
Rev. Time Author
c777e81 1996-07-20 16:33:36 Marc G. Fournier

fixed a bug with not commenting out FSYNC= in initdb.sh

2028840 1996-07-19 16:24:11 Marc G. Fournier

Fixes:

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>

83adddf 1996-07-19 16:19:56 Marc G. Fournier

- improve date/time parsing routines

- submitted by: Massimo Dal Zotto <dz@cs.unitn.it>

a7cfd65 1996-07-19 16:14:14 Marc G. Fournier

Fixes:

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>

3704b99 1996-07-19 16:00:56 Marc G. Fournier

- libpq calls "fe_getauthname()" two times in "fe-connect.c", but
doesn't free the buffer allocated by this function.

- submitted by: Erich Stamberger <eberger@gewi.kfunigraz.ac.at>

df1a06e 1996-07-19 15:53:40 Marc G. Fournier

- added -ltermcap to LIBS in bin/psql/Makefile

- submitted by: Bruce Momjian (root@candle.pha.pa.us)

2ab6d1f 1996-07-19 15:47:51 Marc G. Fournier

Removed -I${HEADERFILE} from bin/Makefile.global

de82ece 1996-07-19 15:36:38 Marc G. Fournier

Fix PAGER bug in createuser/etc scripts

submitted by: Bruce Momjian (root@candle.pha.pa.us)

6562fa8 1996-07-19 15:27:59 Marc G. Fournier

Fixes:

'select distinct on' causes backend to crash

submitted by: Chris Dunlop chris@onthe.net.au

9bffaad 1996-07-19 15:13:58 Marc G. Fournier

Fixes:

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>

64bfa04 1996-07-19 15:08:21 Marc G. Fournier

fixes for textcat(), but headers were missing from archive :(

89ad633 1996-07-19 14:54:17 Marc G. Fournier

Fixes compile errors with irix5 port

Submitted by: Thomas van Reimersdahl <reimersd@dali.techinfo.rwth-aachen.de>

2771129 1996-07-19 14:32:42 Marc G. Fournier

Fixes:
minor Makefile changes to force setting of SRCDIR and ordering of
include files

Submitted by: Bruce Momjian (root@candle.pha.pa.us)

54857ad 1996-07-19 14:21:28 Marc G. Fournier

Fixes:

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>

1d4a115 1996-07-19 14:12:40 Marc G. Fournier

Fixes:

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>

72f76d3 1996-07-18 14:48:57 Marc G. Fournier

libpq and psql.c have been modified to do various things they didn't do
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>

bc0bd47 1996-07-18 13:59:42 Marc G. Fournier

Fixes: In the solaris port the file descriptors are hard coded to 20 (from the
include file sys/param.h

Submitted by: michael.siebenborn@ae3.Hypo.DE (Michael Siebenborn (6929))

55aab6a 1996-07-16 16:13:58 Marc G. Fournier

fix: BSDi 2.1 requires a port seperate from BSDi 2.0{.1}

submitted by: Bruce Momjian (root@candle.pha.pa.us)

bf2abf0 1996-07-16 15:58:12 Marc G. Fournier

fix: clean up formatting of \d tablename in psql

submitted by: Bruce Momjian (root@candle.pha.pa.us)

e5eb859 1996-07-16 15:53:41 Marc G. Fournier

fix: During a BSD/OS(BSDI) 2.1 compile, I got errors about undefined
S_LOCK_'s during the postgres link phase.

submitted by: Bruce Momjian (root@candle.pha.pa.us)

169a5b7 1996-07-16 15:37:28 Marc G. Fournier

applied fixes for psql
- \p produces traditional results
- \r added

submitted by: Bruce Momjian (root@candle.pha.pa.us)

d7a1ce7 1996-07-16 04:32:33 Marc G. Fournier

adds: case insensitive regexp for varchar
From: azcb0@sde.uts.amdahl.com

350cb69 1996-07-16 04:22:58 Marc G. Fournier

fsync patch from openlink

NOTE: FSYNC needs to be set at top of initdb.sh to enable use of fsync
patches...disabled by default

faf2193 1996-07-16 04:22:17 Marc G. Fournier

fsync patch from openlink

d838e30 1996-07-16 04:11:23 Marc G. Fournier

Submitted by Openlink, requires -DOPENLINK_PATCHES in Makefile.global

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

76145bd 1996-07-16 04:10:32 Marc G. Fournier

Makefile.global changes to show option -DOPENLINK_PATCHES

3a2a368 1996-07-13 16:37:33 Marc G. Fournier

Moved two defines required for FreeBSD into Makefile.global

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...

d602a35 1996-07-12 14:39:39 Marc G. Fournier

Brought in extensions to pg_dump

Submitted by: david bennett <dave@bensoft.com>
marc g. fournier <scrappy@ki.net>

e72ca17 1996-07-12 13:53:59 Marc G. Fournier

fixes for several potential null pointer dereferences

submitted by: Paul "Shag" Walmsley <ccshag@cclabs.missouri.edu>

950b6ab 1996-07-09 15:39:19 Marc G. Fournier

Fixes: Using LIKE or ~ operator on text type files which are null valued
causes segmentation fault.

Thanks to: Salvador Ortiz Garcia, Robert Patrick, Paul 'Shag' Walmsley,
and James Cooper for finding and fixing the problem.

Show on old repository browser