Age | Commit message (Collapse) | Author | |
---|---|---|---|
1996-11-10 | All external function definitions now have prototypes that are checked. | Bruce Momjian | |
1996-11-10 | Quiet compiler warnings. | Bryan Henderson | |
1996-11-10 | Remove #include <regex.h> so it compiles on systems with GNU regex library. | Bryan Henderson | |
1996-11-09 | Makefile cleanup after reorganization | Bruce Momjian | |
1996-11-08 | More compile cleanups | Bruce Momjian | |
1996-11-08 | Compile and warning cleanup | Bruce Momjian | |
1996-11-06 | Another directory that compiles with no errors, and few warnings | Marc G. Fournier | |
1996-11-06 | Make sure that #include <postgres.h> is included in fmgrtab.c | Marc G. Fournier | |
1996-11-06 | Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk> | Marc G. Fournier | |
1996-11-04 | Remove OPENLINK define | Bruce Momjian | |
1996-11-04 | Remove ARRAY_PATCH define | Bruce Momjian | |
1996-11-04 | Remove ESCAPE_PATCH define | Bruce Momjian | |
1996-11-04 | Removed PORTNAME_. Use OS version only. | Bruce Momjian | |
1996-11-03 | Cleaned up include headers | Marc G. Fournier | |
1996-11-03 | Include Makefile.global so fmgrtab.c compiles properly. Thanks Keith Parks. | Bryan Henderson | |
1996-11-03 | Produce a clean compile of backend... | Marc G. Fournier | |
1996-11-02 | Convenience routine for checking superuser status. | Bryan Henderson | |
1996-11-02 | Add misc subdirectory. | Bryan Henderson | |
1996-10-31 | more removal of PORTNAME_* | Marc G. Fournier | |
1996-10-31 | .h files shouldn't include .h files, .c files should contain .h files... | Marc G. Fournier | |
remove postgres.h from fmgr.h creation | |||
1996-10-31 | Added needed include file. | Bruce Momjian | |
1996-10-27 | Simplify make files, add full dependencies. | Bryan Henderson | |
1996-10-26 | Correct #if statement so it compiles on Solaris. Thanks Keith Parks. | Bryan Henderson | |
1996-10-25 | Use EUROPEAN_DATES instead of EUROPEAN_STYLE | Bryan Henderson | |
1996-10-24 | Fixes: Growing backend when using nested function calls | Marc G. Fournier | |
Submitted by: wieck@sapserv.debis.de (Jan Wieck) | |||
1996-10-24 | Fixes: Errors when PQexec() in backend creates temp | Marc G. Fournier | |
relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck) | |||
1996-10-23 | Major code cleanups from D'arcy (-Wall -Werror) | Marc G. Fournier | |
1996-10-17 | Move "port specific" #ifdefs out of here and into config.h | Marc G. Fournier | |
- created a HAVE_TZSET define for this purpose | |||
1996-10-13 | Removed const warning. | Bruce Momjian | |
1996-10-13 | D'Arcy change. | Bruce Momjian | |
1996-10-07 | Mostly adding "const" keyword and making some functions static. | Marc G. Fournier | |
Submitted by: D'Arcy Cain | |||
1996-09-23 | diff -ru ../../../orig/postgres95/src/backend/utils/adt/varlena.c | Marc 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-19 | I have two small patches which correct some very obscure bug in the parser | Marc G. Fournier | |
of the array constants and in one of the loadable modules I posted some time ago. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-09-10 | Fixes: | Marc G. Fournier | |
The comparison routines for text and char data type give incorrect results if the input data contains characters greater than 127. As these routines perform the comparison using signed char variables all character codes greater than 127 are interpreted as less than 0. These codes are used to encode the iso8859 char sets. The other text-like data types seem to work as expected as they use unsigned chars in comparisons. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | |||
1996-08-28 | Clean up th ecompile process by centralizing the include files | Marc G. Fournier | |
- code compile tested, but due to a yet unresolved problem with parse.h's creation, compile not completed... | |||
1996-08-28 | Path to pg_proc.h to create fmgrtab.c change to include/catalog | Marc G. Fournier | |
1996-08-27 | Should finish cleaning out the machine.h includes | Marc G. Fournier | |
1996-08-27 | At this rate, maybe next year sometime I'll get this done... | Marc G. Fournier | |
Goals: reduce the difficulty of porting from platform to platform, release to release, but moving as much as possible into config.h | |||
1996-08-26 | The patch that is applied at the end of the email makes sure that these | Marc G. Fournier | |
conditions are always met. The patch can be applied to any version of Postgres95 from 1.02 to 1.05. After applying the patch, queries using indices on bpchar and varchar fields should (hopefully ;-) ) always return the same tuple set regardless to the fact whether indices are used or not. Submitted by: Gerhard Reithofer <tbr_laa@AON.AT> | |||
1996-08-26 | There, now we support GiST...now what? :) | Marc G. Fournier | |
1996-08-19 | Added a SVR4 port | Marc G. Fournier | |
--- below my signature, there are a coupls of diffs and files in a shell archive, which were needed to build postgres95 1.02 on Siemens Nixdorfs MIPS based SINIX systems. Except for the compiler switches "-W0" and "-LD-Blargedynsym" these diffs should also apply for other SVR4 based systems. The changes in "Makefile.global" and "genbki.sh" can probably be ignored (I needed gawk, to make the script run). There is one bugfix thou. In "src/backend/parser/sysfunc.c" the function in this file didn't honor the EUROPEAN_DATES ifdef. --- Submitted by: Frank Ridderbusch <ridderbusch.pad@sni.de> | |||
1996-08-15 | Fixes a bug in 'create index' | Marc G. Fournier | |
Submitted by: Dan McGuirk <mcguirk@indirect.com> | |||
1996-08-14 | I grabbed the latest version of the source code via sup this morning, | Marc G. Fournier | |
and found out that one of the patches is a show stopper for compiling under a strict ansi package. Please make sure the following fix makes it into the 1.02.1 release... Thanks. -Kurt | |||
1996-08-13 | More code cleanups | Marc G. Fournier | |
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain) | |||
1996-08-13 | More code cleanups | Marc G. Fournier | |
Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain) | |||
1996-07-31 | This prevent gcc from complaining about casting a short to a char * and | Marc G. Fournier | |
fixes another complaint. More fixes from Bruce... | |||
1996-07-30 | More cleanups by "Kurt J. Lidl" <lidl@va.pubnix.com> | Marc G. Fournier | |
1996-07-22 | - merging in Dr. George's tree with ours | Marc G. Fournier | |
- src/backend/access - no changes - src/backend/utils - mostly cosmetic changes - ESCAPE_PATCH Added - src/Makefile.global changes merged | |||
1996-07-20 | Brought in NEOSOFT's port to i386_solaris | Marc G. Fournier | |
Submitted by: Randy Kunkee <kunkee@Starbase.NeoSoft.COM> | |||
1996-07-20 | Fixes: | Marc G. Fournier | |
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> |