Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Make a local isblank() function, since not all standard C libraries have it. | Bryan Henderson | 1996-10-28 |
| | | | | | For sparc_solaris, add inet_aton prototype, since it isn't in the header files included for the standard C library functions. | ||
* | Add our own copy of inet_aton() for sparc_solaris, which doesn't have it in | Bryan Henderson | 1996-10-28 |
| | | | | the standard C library. | ||
* | Simplify make files, add full dependencies. | Bryan Henderson | 1996-10-27 |
| | |||
* | Correct #if statement so it compiles on Solaris. Thanks Keith Parks. | Bryan Henderson | 1996-10-26 |
| | |||
* | D'Arcy's cleanups | Marc G. Fournier | 1996-10-26 |
| | |||
* | Make sure the btree patch gets into 2.0 as well... | Marc G. Fournier | 1996-10-25 |
| | | | | Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | ||
* | Add CFLAGS+=-DPOSTPORT=... so we can take it out of the global CFLAGS. | Bryan Henderson | 1996-10-25 |
| | |||
* | Use EUROPEAN_DATES instead of EUROPEAN_STYLE | Bryan Henderson | 1996-10-25 |
| | |||
* | E Use EUROPEAN_DATES from config.h instead of -D option | Bryan Henderson | 1996-10-25 |
| | |||
* | Fixes: Growing backend when using nested function calls | Marc G. Fournier | 1996-10-24 |
| | | | | Submitted by: wieck@sapserv.debis.de (Jan Wieck) | ||
* | Fixes: Errors when PQexec() in backend creates temp | Marc G. Fournier | 1996-10-24 |
| | | | | | | relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck) | ||
* | Fixes: | Marc G. Fournier | 1996-10-24 |
| | | | | | | | | | | | | | | | | | It's bug in nodeAgg.c on lines 241, 242: null_array = malloc(nagg); for (i=0;i<nagg;i++) null_array[i] = 'n'; oneTuple = heap_formtuple(tupType, tupValue, null_array); - your query has not only aggregates but also 'group by-ed' fields and so null_array should contain tupType->natts elements (tupType->natts > nagg in your case). Patch follows and it's very simple. VAdim | ||
* | Take out the PERFECT_MMGR #ifdefs: | Marc G. Fournier | 1996-10-24 |
| | | | | | | | | | | | My guess is that the thing had bugs, and the pfree was commented out. The thing is probabally free'ed anyway at the end, so it was not a bad thing. If it does cause a bug, it will generate an error when hit, so I say unless someone else knows, let's remove it and run the regression test. -Bruce | ||
* | Bruce...does this fix it once and for all? *grin* | Marc G. Fournier | 1996-10-24 |
| | |||
* | Major code cleanups from D'arcy (-Wall -Werror) | Marc G. Fournier | 1996-10-23 |
| | |||
* | |I have moved things around so that things happen in the following order: | Marc G. Fournier | 1996-10-23 |
| | | | | | | | | | | | | | 1. Set default variables | 2. Include Makefile.custom to override defaults | 3. Set CFLAGS, etc. with variables | |This fixes the problem of Makefile.custom changes not taking effect. Submitted by: D'Arcy Cain | ||
* | Update "planner" directory to "optimizer" in include paths in this dead code. | Bryan Henderson | 1996-10-23 |
| | |||
* | Cosmetic changes to ordering of #include files | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall'd | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall'd | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall'd ... I missed a subdir under access :( | Marc G. Fournier | 1996-10-21 |
| | |||
* | Make line 159:bp = NULL, to quiet compiler | Marc G. Fournier | 1996-10-21 |
| | | | | Suggested by: Randy Terbush <randy@zyzzyva.com> | ||
* | -Wall'd | Marc G. Fournier | 1996-10-21 |
| | | | | That finishes access/* | ||
* | Force user to set PORTNAME. Remove NAMEDATALEN from CFLAGS (don't need it | Bryan Henderson | 1996-10-21 |
| | | | | there because it's in config.h, which is cleaner). | ||
* | -Wall'd | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall'd | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall Cleanup of gist subdirectory | Marc G. Fournier | 1996-10-21 |
| | |||
* | -Wall cleanup of gist subdirectory: | Marc G. Fournier | 1996-10-21 |
| | | | | | | | | | | | - cleaned out unused variables - added missing prototype headers One outstanding -Werror failure: /home/staff/scrappy/postgres/2.0/cvs/postgres95/src/backend/access/gist/giststra t.c:117: warning: missing braces around initializer for `GISTEvaluationData.expr ession' | ||
* | Define prototypes from giststrat.c required in gistscan.c | Marc G. Fournier | 1996-10-21 |
| | |||
* | Other then: | Marc G. Fournier | 1996-10-20 |
| | | | | | | indextuple.c:159: warning: `bp' might be used uninitialized in this function this directory passes -Wall -Werror under FreeBSD | ||
* | remove an #ifdef/#else/#endif that doesn't actually have anything inside | Marc G. Fournier | 1996-10-20 |
| | | | | of it | ||
* | Make default HAVE_MEMMOVE defined, undef inside of definitions for sparc | Marc G. Fournier | 1996-10-20 |
| | |||
* | change '#if defined(PORTNAME_sparc)' to '#if !defined(HAVE_MEMMOVE)' | Marc G. Fournier | 1996-10-20 |
| | |||
* | Add #define HAVE_MEMMOVE for systems that do have it. | Marc G. Fournier | 1996-10-20 |
| | |||
* | Clean up comments (-Wall -Werror) | Marc G. Fournier | 1996-10-20 |
| | |||
* | #include file cleanup | Marc G. Fournier | 1996-10-20 |
| | |||
* | More #include cleanups | Marc G. Fournier | 1996-10-20 |
| | | | | | Once access/* is cleaned out, will redo using -Wall on compile to make sure that all prototyping is correct | ||
* | First pass at fixing my own mistakes | Marc G. Fournier | 1996-10-20 |
| | | | | | | Mainly...fix up the includes I removed, as well as prototypes Pointed out by D'Arcy | ||
* | Another directory cleaned out | Marc G. Fournier | 1996-10-20 |
| | |||
* | More include files cleaned up | Marc G. Fournier | 1996-10-20 |
| | |||
* | Okay...another directory cleaned out and compilable | Marc G. Fournier | 1996-10-20 |
| | |||
* | Add HAVE_Cplusplus= true to BSD44_derived Makefile.inc, as I know that | Marc G. Fournier | 1996-10-19 |
| | | | | FreeBSD/NetBSD both ship with gcc 2.7.x | ||
* | Not quite the cleanest way to do it, but add an option to Makefile.global | Marc G. Fournier | 1996-10-19 |
| | | | | | | that allows one to compile libpq++ this should be set on a port-by-port basis | ||
* | Welp, another subdirectory cleaned out of redundant/unused #include | Marc G. Fournier | 1996-10-19 |
| | | | | files | ||
* | There...that pretty much cleans up redundant/unused #includes in | Marc G. Fournier | 1996-10-19 |
| | | | | access/common...how many more directories to go? :) | ||
* | Almost have access/common cleaned up... | Marc G. Fournier | 1996-10-19 |
| | |||
* | A few more yet... | Marc G. Fournier | 1996-10-19 |
| | |||
* | wish there was an easier way to clean this up... | Marc G. Fournier | 1996-10-19 |
| | |||
* | another small one | Marc G. Fournier | 1996-10-19 |
| | |||
* | Hopefully that cleans up the cruft from rel.h | Marc G. Fournier | 1996-10-19 |
| |