git.postgresql.org Git - postgresql.git/log
Change EXPLAIN options to just use VERBOSE.
FlushLocalBuffer () releases buffer only if required
by caller.
No more LateWrite, but there is WriteMode;
SetBufferWriteMode () added;
FlushBuffer () fixed: now directly calls smgrflush () and
releases buffer only if required by caller.
No more LateWrite.
VariableRelationPutNextXid () now flushes variable relation
after writing next free XID.
SetBufferWriteMode () added; FlushLocalBuffer () fixed (shouldn't
release buffer if called from WriteNoReleaseBuffer ())
Add inet_aton() prototype.
textin fixed: no more zero-byte (thanks, Erich)
Import of PostgreSQL User Manual
Added postgres.h include to quiet down the HPUX ports...
POinted out by: Martin S. Utesch <utesch@aut.tu-freiberg.de>
Comment out LD_ADD and DPADD
DEC Alpha fix. Missing #.
Change to handle bsdi 3.0.
Added lines and comments.
Re-add -lipc to bsdi port after erroneous removal.
Put back -lm for non-nextstep ports.
Eliminate dupliclate definition of external variables reldesc and DataDir.
Some compilers recognize this error.
I'm going t take a chance that this was a mis-spelling, since
all the other port related dependencies are ifeq, not ifneq..
If I'm wrong, someone tell me or change it back...
ReleaseTmpRelBuffers is ReleaseRelationBuffers now.
heap_destroy () releases dirty buffers of a relation to be
destroyed.
There is no more ReleaseTmpRelBuffers, but ReleaseRelationBuffers.
Cleanup for DEBUG: removal in initdb.sh.
Prevent initdb from showing vacuum statistics.
Remove CFLAGS_SL from lib/Makefile
There are two prototypes for inet_aton, one in include/inet_aton.h, and
another one in Solaris' port-protos.h.
The following patch will bring inet_aton's prototype into scope for
Ultrix to silence a compilation warning.
If the intention is to have inet_aton's prototype in its own header
filer, the declaration in Solaris' port-protos.h should be removed.
If the declaration in port-protos.h is deemed to be the correct
place, a declaration should be added in Ultrix' port-protos.h
regards
Erik Bertelsen
Another compilation error has surfaced on Ultrix. In spin.c, sem.h must be
included after storage/ipc.h like other similar cases that were changed
recently.
This one has popped up during the last few days.
My sources are sup'ed today, 13. jan 1996.
regards
Erik Bertelsen.
Restored original pg_type/pg_attribute defaults. Regression fixes.
Andrew's Makefile.custom generation program...hopefully should
reduce *some* confusion, eh? :)
From: Andrew Martin <martin@biochemistry.ucl.ac.uk>
Update create_index manual page to have unique section.
Update history file for 1.09 release
Re-add -lm link flag
Change -lIPC to -lipc.
Fix typo in findstring use.
Part of patch to make a working nextstep port.
Added VERBOSE option to vacuum command.
Oops, introduced a bug in EOF handling. Fix it.
No EOF from psql when quiet mode.
Add nextstep port, courtesy of Ovidiu Predescu.
From: Keith Parks <emkxp01@mtcc.demon.co.uk>
OK, The votes are in for the NOFILES limit.
With the exception of Next, for which I've not yet heard, all supported platforms
seem to have the sysconf() call.
port supported default Source.
aix yes 2000 darrenk@insightdist.com
alpha yes 4096 mjl@wwx.vip.at
BSD44_derived yes 64 scrappy@hub.org
bsdi yes ??? maillist@candle.pha.pa.us
dgux yes ??? geek@andrew.cmu.edu
hpux yes 60 emkxp01@mtcc.demon.co.uk
i386_solaris yes 64 emkxp01@mtcc.demon.co.uk
irix5 yes 200 martin@biochem.uc.ac.uk
linux yes 256 emkxp01@mtcc.demon.co.uk
next ???? ???
sparc_solaris yes 64 emkxp01@mtcc.demon.co.uk
sunos4 yes 64 emkxp01@mtcc.demon.co.uk
svr4 yes 64 chicks@chicks.net
ultrix4 yes 64 erik@sockdev.uni-c.dk
So here's a patch that I think will do the job.
(I assume Next will have sysconf() but if not just add MISSING_SYSCONF to
the config.h file )
Thanks,
Keith.
Shared library cleanup for -fpic.
Fixes:
I forgot to clear out the variable created and the memory used.
From: darcy@druid.net (D'Arcy J.M. Cain)
From: darcy@druid.net (D'Arcy J.M. Cain)
Fix for libpgtcl:
I forgot to clear out the variable created and the memory used.
INSTALL fix for pg_hba.conf
I've noticed that \i filename in 6.0beta prints the input file double-spaced.
Here is a trivial patch to get back the 1.09 behavior; it just removes trailing
newlines before printing the line out with a newline rather than after...
Thomas Lockhart
Remove octal character constants and convert to decimal constants
include sem.h added, include string.h neede, from Erik Bertelsen for Ultrix
Irix fixes from Martin
cleanup for LINUX_ELF
timeb.h only used when not using POSIX_TIME
Makefile's -fpic only for gcc
Massimo fix for non-existant file copy error.
I found the following bugs in the version 6.0 (dated 961229).
At least the first two should be fixed before the final release of 6.0.
1) There is a mismatch between the type declared in the catalog for
the input/output attributes of pg_type and the actual type of
values stored in the table. The type of typinput, typoutput,
typsend and typreceive are declared oid (26) while the values are
regproc (24). The error was there also in previous versions but
nobody noticed it until an Assert has been added in ExecEvalVar.
The effect is that it is now impossible to replace the typoutput
of existing data types with new procs.
2) The identd hba fails after the first time because the data read
from the identd socket is not zero-terminated and strlen reports
an incorrect length if the stack contains garbage, which usually
happens after the first connection has been made.
3) The new initdb wants to create itself the data directory. This
implies that the parent directory must be writable by postgres and
this may not always be desirable. A better solution would be to
allow the directory to be created by root and then filled by initdb.
It would also nice to have some reasonable default for PGLIB and
PGDATA like the previous version did. This applies also to the
postmaster executable.
Fixed (I hope) unique btree index implementation.
index_insert has now HeapRelation as last param (for unique index
implementation).
index_insert has now HeapRelation as last param (for unique index
implementation).
index_insert has now HeapRelation as last param (for
unique index implementation).
index_insert has now HeapRelation as last param (for
unique index implementation).
Additional fixes for shared library (BSD44_Derived port).
#include <postgres.h> moved upper
From: wieck@sapserv.debis.de
Hi,
counting the empty dummy queries in libpq isn't everything.
If the backend sends an error, the I returns from the dummies
still come. So we must eat them up in any case, not just
returning on the occurence of an E reply.
Until later, Jan
Removed equals sign from examples.
New migration file.
#include "postgres.h"
moved upper.
Use proper types so it compiles on DEC C89. Thanks Erik Bertelson.
Change the way ipc.h is included because sys/ipc.h on Ultrix is broken.
Add include of port-protos.h so it works on Ultrix. Thanks Erik Bertelson.
Fix syntax error
minor path problem fix by tgl@mythos.jpl.nasa.gov
Typo: Change Postgres95 to PostgreSQL
By: tgl@mythos.jpl.nasa.gov
Improvements to pg_dump to:
- dump Views
Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
Fix mismatching prototype (const int vs int)
Add Irix stuff.
remove zap_ltv from the distribution, since the problem it fixed doesn't
exist anymore...
REmove pg4_dump...its old stuff that is sooo out of date as to be useless...
NeXT port specific changes by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
PORT NeXT requires an isascii() define...put it in config.h, most likely
*should* have gone into the ports directory, but hopefully *someday* we'll
be able to get rid of that?
Minor changes for NeXT compile
Submitted by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
More config.h syncing for limits.h
Add NeXT port submitted by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
Clean up 'if defined()' for header files...
add define for USE_LIMIT_H into NeXT port...
Pointed out by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
final fix for shared library under BSD44_derived
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
Shared library fixes for BSD44_Derived port
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
NOTE: The following patch I was uncertain of, but applied it...will end up
testing the compile on my machine later tonight anyway, but if anyone
knows why this *shouldn't* have been done, please change it. (CC -> LD)
***************
*** 61,68 ****
../backend/lib/dllist.o:
$(MAKE) -C ../backend/lib dllist.o
! libpq.so.1: $(OBJS)
! $(CC) $(LDFLAGS) -shared $(OBJS) -o libpq.so.1
c.h: ../include/c.h
rm -f c.h
--- 66,73 ----
../backend/lib/dllist.o:
$(MAKE) -C ../backend/lib dllist.o
! $(shlib): $(OBJS)
! $(LD) $(LDFLAGS) -shared $(OBJS) -o $(shlib)
c.h: ../include/c.h
rm -f c.h
Fixes:
This corrects the newline handling when using the readline library.
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
Fixes:
First, this is because of dlopen() and dlsym() having a char *
in the system prototype.
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
Just reviewed what I changed as far a dlopen/etc are concerned, and determined
that the "fix" is wrong...
Silence compiler warnings, fix error in complex compare function.
Standardize all LDADD to LD_ADD.
Closing opened indices.
Releasing empty root page in _bt_endpoint () to avoid
buffer leak.
someone added pg_listen and pg_notifies to libpgtcl. But first
these routines try to use the old pointer casting stuff to get
the connection id, second the notification hash table should
be part of the cliendData. Otherwise, one interpreter might
eat up the notifies for another one.
Please apply the patch below to the current 6.0 tree.
Submitted by: wieck@sapserv.debis.de
Migration file changes
moved migration files
update TODO
documentation updating to 6.0 release
FreeBSD doesn't require the dl{open,close,sym,error} functions, as they are
already included in the system libraries.
Used if !defined(__FreeBSD__) to single FreeBSD out from the other BSD44
derived OSs
fix for previous fix
psql paren. with \r fix.
ALTER TABLE (text) fix
Fix for SELECT INTO ... GROUP/ORDER BY where table already exists unlink error.
This is the main PostgreSQL git repository.
RSS
Atom