summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-10-07Mostly adding "const" keyword and making some functions static.Marc G. Fournier
Submitted by: D'Arcy Cain
1996-10-07Change new assert so it generates assert message rather than SIGSEG.Bruce Momjian
1996-10-07Remove sytax errors from file.Bruce Momjian
1996-10-07Update help for alter table. remove EXTEND function.Bruce Momjian
1996-10-05Fix typo in help text.Bruce Momjian
1996-10-05Renamed file.Bruce Momjian
1996-10-05Stylistic cleanups...Marc G. Fournier
1996-10-05Add comment about possible zero value.Bruce Momjian
1996-10-05Change shell-style comments to C-style.Bruce Momjian
1996-10-05Fix assert to allow zero. OK'ed by Bryan.Bruce Momjian
1996-10-05Fix args to match prototype.Bruce Momjian
1996-10-05Replace double // with /. THis confuses mkid.Bruce Momjian
1996-10-05Added single-letter options and case statement.Bruce Momjian
1996-10-05Improved creation of mkid files.Bruce Momjian
1996-10-04Here the fix for the first assertion failure I had which killedMarc G. Fournier
my postmaster 1.07. It's really simple, the loop dealing with all sockets can't handle more than one ready socket :-) A simple logic error dealing with lists. OR IS THERE ANY REASON FOR SETTING curr TO 0? Submitted by: Carsten Heyl <Heyl@nads.de>
1996-10-04And bring in change from 1.0.7 tree to here...Marc G. Fournier
1996-10-04Moved the define of SIGNAL_ARGS that D'Arcy just created to config.h so thatMarc G. Fournier
hopefully this sort of thing can eventually be determined using configure?
1996-10-04The remainder of D'Arcy's changes, most notibly the usage of SIGNAL_ARGSMarc G. Fournier
1996-10-04This patch fixes problems in initdb, including that it doesn't runMarc G. Fournier
with some versions of sh, and a bug in the master make file that causes it to issue the message "postgres has been built" at the wrong time. Submitted by: bryanh@giraffe.netgate.net (Bryan Henderson)
1996-10-03Added dlfcn.h to dl.c in BSD44_derived portMarc G. Fournier
1996-10-03Added restriction to tables vacuum'able.Bruce Momjian
Added NOTICE messages for bad table names.
1996-10-03Added chown to Makefile to set files to Postgres user.Bruce Momjian
Does not display and generates no error messages on failure.
1996-10-03Moved them.Bruce Momjian
1996-10-03Brought psql help up to date with syntax and manual.Bruce Momjian
1996-10-03New vacuum option.Bruce Momjian
1996-10-03Fixes extra space in printing.Bruce Momjian
1996-10-03Allow vacuum to run for only one table. Fixes allocation bug.Bruce Momjian
1996-10-03Fixed file to properly do SEMUN for BSDI.Bruce Momjian
Grouped some PORTNAME's for SEMUN.
1996-10-03Added new single-letter options to initdb.sh.Bruce Momjian
Removed long-option names that used ${#} shell feature which was a compatability problem.
1996-10-02change stdout to foutMarc G. Fournier
Submitted by: Carsten Heyl <heyl@nads.de>
1996-10-02Added NEED_UNION_SEMUN to config.hMarc G. Fournier
1996-10-02Moved whether to define union semun from include/storage/ipc.h toMarc G. Fournier
a define in include/config.h
1996-09-26palloc() finfo memory. From Kurt.Bruce Momjian
1996-09-26Fix cluster finfo problem Kurt reported.Bruce Momjian
1996-09-26Fixed YACC depenencies and 'make clean' now cleans totally.Bruce Momjian
1996-09-26This should cause 'make clean' to clean up bki files. Looks like a typo.Bruce Momjian
1996-09-26Prevents possible packet loss from SIGCHLD.Bruce Momjian
1996-09-25Fix location of include files to match postgres.h includes.Bruce Momjian
1996-09-25Changed gawk to awk.Bruce Momjian
1996-09-24Patch for:Marc G. Fournier
# _fUnKy_POSTPORT_sTuFf_ - port to run the postmaster on Submitted by: D'Arcy
1996-09-23Change the comments pertaining to Makefile.customMarc G. Fournier
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
1996-09-23Prototype setMaxOid()Marc G. Fournier
Submitted by: Bruce
1996-09-23CFLAGS +- -I... got messed by one of Bryan's patchesMarc G. Fournier
Fix Submitted by: Bryan himself :)
1996-09-23Fix for using Makefile.customMarc G. Fournier
Suggested/Submitted by: darcy@druid.druid.com Cleaner Method Submitted by: Bryan Henderson <bryanh@giraffe.netgate.net>
1996-09-23From: Bruce Momjian <maillist@candle.pha.pa.us>Marc G. Fournier
To: Postgres95-development <pg95-dev@ki.net> Subject: [PG95-DEV] postgres.h patch This removes the parameters from the func_ptr prototype in postgres.h in 2.0.
1996-09-23From: Bruce Momjian <maillist@candle.pha.pa.us>Marc G. Fournier
To: Postgres95-development <pg95-dev@ki.net> Subject: [PG95-DEV] Makefile.global patch Can we apply the following patch to make EUROPEAN_DATES consistent with other parameters?
1996-09-23Date: Sun, 22 Sep 1996 13:47:39 -0400 (EDT)Marc G. Fournier
From: Bruce Momjian <maillist@candle.pha.pa.us> To: Postgres95-development <pg95-dev@ki.net> Subject: [PG95-DEV] 2.0 patch for fastgetattr
1996-09-23diff -ru ../../../orig/postgres95/src/backend/utils/adt/varlena.cMarc G. Fournier
./utils/adt/varlena.c - --- ../../../orig/postgres95/src/backend/utils/adt/varlena.c Mon Jul 22 23:56:04 1996 +++ ./utils/adt/varlena.c Tue Sep 17 15:12:55 1996 @@ -166,7 +166,7 @@ if (inputText == NULL) return(NULL); - - len = strlen(inputText) + VARHDRSZ; + len = strlen(inputText) + VARHDRSZ + 1 /* terminating 0 */; result = (struct varlena *) palloc(len); VARSIZE(result) = len; memmove(VARDATA(result), inputText, len - VARHDRSZ); Submitted by: skimo@breughel.ufsia.ac.be (Sven Verdoolaege)
1996-09-23diff -ru ../../../orig/postgres95/src/backend/libpq/be-fsstubs.cMarc G. Fournier
./libpq/be-fsstubs.c - --- ../../../orig/postgres95/src/backend/libpq/be-fsstubs.c Tue Jul 9 08:21:30 1996 +++ ./libpq/be-fsstubs.c Tue Sep 17 15:30:09 1996 @@ -241,7 +241,7 @@ */ fd = open(VARDATA(filename), O_RDONLY, 0666); if (fd < 0) { /* error */ - - elog(WARN, "lo_import: can't open unix file\"%s\"\n", filename); + elog(WARN, "lo_import: can't open unix file \"%s\"\n", VARDATA(filename)); } /* Submited by: skimo@breughel.ufsia.ac.be (Sven Verdoolaege)
1996-09-23Here's a patch that I discussed recently on pg95-dev that changes theMarc G. Fournier
way one creates a database system. Parts that were in "make install" are not either in "make all" or initdb. Nothing goes in the PGDATA directory besides user data. Creating multiple database systems is easier. In addition to applying the patch, it is necessary to move the file libpq/pg_hba to backend/libpq/pg_hba.sample. Submitted by: Bryan Henderson <bryanh@giraffe.netgate.net>