summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-01-08Removed equals sign from examples.Bruce Momjian
1997-01-08#include "postgres.h"Vadim B. Mikheev
moved upper.
1997-01-08Use proper types so it compiles on DEC C89. Thanks Erik Bertelson.Bryan Henderson
1997-01-08Change the way ipc.h is included because sys/ipc.h on Ultrix is broken.Bryan Henderson
1997-01-08Add include of port-protos.h so it works on Ultrix. Thanks Erik Bertelson.Bryan Henderson
1997-01-08Fix syntax errorBryan Henderson
1997-01-08minor path problem fix by tgl@mythos.jpl.nasa.govMarc G. Fournier
1997-01-08Typo: Change Postgres95 to PostgreSQLMarc G. Fournier
By: tgl@mythos.jpl.nasa.gov
1997-01-07Improvements to pg_dump to:Marc G. Fournier
- dump Views Submitted by: Keith Parks <emkxp01@mtcc.demon.co.uk>
1997-01-06Fix mismatching prototype (const int vs int)Bryan Henderson
1997-01-06Add Irix stuff.Bryan Henderson
1997-01-06REmove pg4_dump...its old stuff that is sooo out of date as to be useless...Marc G. Fournier
1997-01-06NeXT port specific changes by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>Marc G. Fournier
1997-01-06PORT NeXT requires an isascii() define...put it in config.h, most likelyMarc G. Fournier
*should* have gone into the ports directory, but hopefully *someday* we'll be able to get rid of that?
1997-01-06Minor changes for NeXT compileMarc G. Fournier
Submitted by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
1997-01-06More config.h syncing for limits.hMarc G. Fournier
1997-01-06Add NeXT port submitted by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>Marc G. Fournier
1997-01-06Clean up 'if defined()' for header files...Marc G. Fournier
1997-01-06add define for USE_LIMIT_H into NeXT port...Marc G. Fournier
Pointed out by: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
1997-01-05final fix for shared library under BSD44_derivedMarc G. Fournier
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
1997-01-05Shared library fixes for BSD44_Derived portMarc G. Fournier
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
1997-01-05Fixes:Marc G. Fournier
This corrects the newline handling when using the readline library. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
1997-01-05Fixes:Marc G. Fournier
First, this is because of dlopen() and dlsym() having a char * in the system prototype. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
1997-01-05Just reviewed what I changed as far a dlopen/etc are concerned, and determinedMarc G. Fournier
that the "fix" is wrong...
1997-01-05Silence compiler warnings, fix error in complex compare function.Bryan Henderson
1997-01-05Standardize all LDADD to LD_ADD.Bryan Henderson
1997-01-05Closing opened indices.Vadim B. Mikheev
1997-01-05Releasing empty root page in _bt_endpoint () to avoidVadim B. Mikheev
buffer leak.
1997-01-03 someone added pg_listen and pg_notifies to libpgtcl. But firstMarc G. Fournier
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
1997-01-03documentation updating to 6.0 releaseBruce Momjian
1997-01-03FreeBSD doesn't require the dl{open,close,sym,error} functions, as they areMarc G. Fournier
already included in the system libraries. Used if !defined(__FreeBSD__) to single FreeBSD out from the other BSD44 derived OSs
1997-01-02fix for previous fixBruce Momjian
1997-01-02psql paren. with \r fix.Bruce Momjian
1997-01-02ALTER TABLE (text) fixBruce Momjian
1997-01-01Fix for SELECT INTO ... GROUP/ORDER BY where table already exists unlink error.Bruce Momjian
1996-12-31Make error messages more explicit, PQtrace() output more readable.Bryan Henderson
1996-12-31Rename Makefile to GNUmakefile to catch people using other makes.Bryan Henderson
1996-12-31Fixed realloc for increasing tempRels list.Vadim B. Mikheev
1996-12-31ReleaseTmpRelBuffers () releases buffers in LOCAL buffer pool nowVadim B. Mikheev
(if rd_islocal is true).
1996-12-30Put $(CURSES_LIB) in Makefile.global to replace similar thing in psql/Makefile.Bryan Henderson
1996-12-30Check that PQendcopy succeeded. Issue error message if not.Bryan Henderson
1996-12-29explain changeBruce Momjian
1996-12-29typo fixBruce Momjian
1996-12-29New EXPLAIN manual page.Bruce Momjian
1996-12-29Changed EXPLAIN option names.Bruce Momjian
1996-12-29Improved EXPLAIN option handling.Bruce Momjian
1996-12-28Fix expected regression output.Bruce Momjian
1996-12-28Fixed errors in create statement.Bruce Momjian
1996-12-28Fixed error where = should be ==.Bruce Momjian
1996-12-28Fixed Assert check where ! should be !=.Bruce Momjian