| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Added misc include files | Marc G. Fournier | 1996-10-31 | 4 | -4/+8 |
| | | |||||
| * | .h files shouldn't include .h files, .c files should contain .h files... | Marc G. Fournier | 1996-10-31 | 1 | -5/+3 |
| | | | | | remove postgres.h from fmgr.h creation | ||||
| * | Even compile generated .h files should be in ${SRCDIR}/include... | Marc G. Fournier | 1996-10-31 | 1 | -4/+4 |
| | | |||||
| * | Well, normally there wouldn't be anything in -I../.., and in a minute, there | Marc G. Fournier | 1996-10-31 | 1 | -2/+1 |
| | | | | | won't be... | ||||
| * | Move these files to ${SRCDIR}/include | Marc G. Fournier | 1996-10-31 | 3 | -1179/+0 |
| | | |||||
| * | There is no -I../.. include files... | Marc G. Fournier | 1996-10-31 | 1 | -3/+2 |
| | | |||||
| * | Added needed include file. | Bruce Momjian | 1996-10-31 | 7 | -7/+17 |
| | | |||||
| * | Changed make to gmake. | Bruce Momjian | 1996-10-31 | 2 | -3/+4 |
| | | | | | Added needed include file. | ||||
| * | Added prototypes missing from parser patch. | Bruce Momjian | 1996-10-31 | 2 | -2/+4 |
| | | | | | Added needed include file. | ||||
| * | Fix memset() call, variables being passed in wrong order. | Marc G. Fournier | 1996-10-30 | 1 | -3/+3 |
| | | | | | Pointed out by: wieck@sapserv.debis.de | ||||
| * | Fixes: | Marc G. Fournier | 1996-10-30 | 4 | -5/+43 |
| | | | | | | | | | | | | | | | | | | I found another bug in btree index. Looking at the code it seems that NULL keys are never used to build or scan a btree index (see the explain commands in the example). However this is not the case when a null key is retrieved in an outer loop of a join select and used in an index scan of an inner loop. This bug causes at least three kinds of problems: 1) the backend crashes when it tries to compare a text string with a null. 2) it is not possible to find tuples with null keys in a join. 3) null is considered equal to 0 when the datum is passed by value, see the last query. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | ||||
| * | Parser Overhaul | Bruce Momjian | 1996-10-30 | 5 | -480/+391 |
| | | |||||
| * | Fix small syntax error. | Bryan Henderson | 1996-10-30 | 1 | -2/+1 |
| | | |||||
| * | Remove another snprintf() for Solaris. | Bryan Henderson | 1996-10-29 | 1 | -3/+10 |
| | | |||||
| * | Use strncpy() and local buffers instead of snprintf(), since not everyone | Bryan Henderson | 1996-10-28 | 1 | -9/+12 |
| | | | | | has snprintf(). | ||||
| * | Make a local isblank() function, since not all standard C libraries have it. | Bryan Henderson | 1996-10-28 | 1 | -2/+12 |
| | | | | | | 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 | 3 | -5/+170 |
| | | | | | the standard C library. | ||||
| * | Simplify make files, add full dependencies. | Bryan Henderson | 1996-10-27 | 125 | -1594/+2650 |
| | | |||||
| * | Correct #if statement so it compiles on Solaris. Thanks Keith Parks. | Bryan Henderson | 1996-10-26 | 1 | -4/+2 |
| | | |||||
| * | D'Arcy's cleanups | Marc G. Fournier | 1996-10-26 | 5 | -11/+15 |
| | | |||||
| * | Make sure the btree patch gets into 2.0 as well... | Marc G. Fournier | 1996-10-25 | 1 | -9/+50 |
| | | | | | Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it> | ||||
| * | Use EUROPEAN_DATES instead of EUROPEAN_STYLE | Bryan Henderson | 1996-10-25 | 1 | -11/+8 |
| | | |||||
| * | E Use EUROPEAN_DATES from config.h instead of -D option | Bryan Henderson | 1996-10-25 | 1 | -1/+3 |
| | | |||||
| * | Fixes: Growing backend when using nested function calls | Marc G. Fournier | 1996-10-24 | 1 | -1/+32 |
| | | | | | Submitted by: wieck@sapserv.debis.de (Jan Wieck) | ||||
| * | Fixes: Errors when PQexec() in backend creates temp | Marc G. Fournier | 1996-10-24 | 3 | -7/+27 |
| | | | | | | | relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck) | ||||
| * | Fixes: | Marc G. Fournier | 1996-10-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | 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 | 2 | -6/+2 |
| | | | | | | | | | | | | 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 | ||||
| * | Major code cleanups from D'arcy (-Wall -Werror) | Marc G. Fournier | 1996-10-23 | 31 | -130/+205 |
| | | |||||
| * | Update "planner" directory to "optimizer" in include paths in this dead code. | Bryan Henderson | 1996-10-23 | 2 | -15/+15 |
| | | |||||
| * | Cosmetic changes to ordering of #include files | Marc G. Fournier | 1996-10-21 | 7 | -146/+133 |
| | | |||||
| * | -Wall'd | Marc G. Fournier | 1996-10-21 | 4 | -109/+207 |
| | | |||||
| * | -Wall'd | Marc G. Fournier | 1996-10-21 | 3 | -35/+145 |
| | | |||||
| * | -Wall'd ... I missed a subdir under access :( | Marc G. Fournier | 1996-10-21 | 3 | -3/+33 |
| | | |||||
| * | Make line 159:bp = NULL, to quiet compiler | Marc G. Fournier | 1996-10-21 | 1 | -2/+2 |
| | | | | | Suggested by: Randy Terbush <randy@zyzzyva.com> | ||||
| * | -Wall'd | Marc G. Fournier | 1996-10-21 | 5 | -36/+159 |
| | | | | | That finishes access/* | ||||
| * | -Wall'd | Marc G. Fournier | 1996-10-21 | 3 | -4/+49 |
| | | |||||
| * | -Wall'd | Marc G. Fournier | 1996-10-21 | 8 | -8/+83 |
| | | |||||
| * | -Wall Cleanup of gist subdirectory | Marc G. Fournier | 1996-10-21 | 2 | -6/+32 |
| | | |||||
| * | -Wall cleanup of gist subdirectory: | Marc G. Fournier | 1996-10-21 | 2 | -19/+42 |
| | | | | | | | | | | | | - 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' | ||||
| * | Other then: | Marc G. Fournier | 1996-10-20 | 7 | -7/+75 |
| | | | | | | | indextuple.c:159: warning: `bp' might be used uninitialized in this function this directory passes -Wall -Werror under FreeBSD | ||||
| * | #include file cleanup | Marc G. Fournier | 1996-10-20 | 9 | -80/+258 |
| | | |||||
| * | More #include cleanups | Marc G. Fournier | 1996-10-20 | 8 | -92/+223 |
| | | | | | | 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 | 22 | -19/+583 |
| | | | | | | | 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 | 3 | -52/+16 |
| | | |||||
| * | Okay...another directory cleaned out and compilable | Marc G. Fournier | 1996-10-20 | 9 | -95/+21 |
| | | |||||
| * | Add HAVE_Cplusplus= true to BSD44_derived Makefile.inc, as I know that | Marc G. Fournier | 1996-10-19 | 1 | -1/+3 |
| | | | | | FreeBSD/NetBSD both ship with gcc 2.7.x | ||||
| * | Welp, another subdirectory cleaned out of redundant/unused #include | Marc G. Fournier | 1996-10-19 | 4 | -44/+20 |
| | | | | | files | ||||
| * | There...that pretty much cleans up redundant/unused #includes in | Marc G. Fournier | 1996-10-19 | 7 | -109/+14 |
| | | | | | access/common...how many more directories to go? :) | ||||
| * | Another cleaned up | Marc G. Fournier | 1996-10-19 | 1 | -8/+16 |
| | | |||||
| * | One at a time...another one is complete... | Marc G. Fournier | 1996-10-19 | 1 | -11/+13 |
| | | |||||
