aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Collapse)AuthorAge
* Add #include "postgres.h"Marc G. Fournier1996-10-31
|
* Cleanup MakefilesMarc G. Fournier1996-10-31
| | | | | | Add #include "postgres.h" and #include <sys/types.h>
* More Makefile cleanupsMarc G. Fournier1996-10-31
| | | | Add #include "postgres.h" as required
* clean up makefileMarc G. Fournier1996-10-31
| | | | add #include "postgres.h"
* Clean out makefileMarc G. Fournier1996-10-31
| | | | add #include "postgres.h"
* more removal of PORTNAME_*Marc G. Fournier1996-10-31
|
* more removals of PORTNAME_*Marc G. Fournier1996-10-31
|
* remove use of PORTNAME_*Marc G. Fournier1996-10-31
|
* add #include "postgres.h", as required by all .c filesMarc G. Fournier1996-10-31
|
* Require superuser privilege to create C function.Bryan Henderson1996-10-31
|
* More of the same...clean Makefile, add include filesMarc G. Fournier1996-10-31
|
* Same clean up of Makefile, and addition of include filesMarc G. Fournier1996-10-31
|
* Cleaned out -I../.. -I../../include from MakefileMarc G. Fournier1996-10-31
| | | | Added missing include files
* Remove -I../.. and -I../../include from MakefileMarc G. Fournier1996-10-31
| | | | Add some missing include files
* Add a couple of missing includesMarc G. Fournier1996-10-31
|
* Added misc include filesMarc G. Fournier1996-10-31
|
* .h files shouldn't include .h files, .c files should contain .h files...Marc G. Fournier1996-10-31
| | | | remove postgres.h from fmgr.h creation
* Even compile generated .h files should be in ${SRCDIR}/include...Marc G. Fournier1996-10-31
|
* Well, normally there wouldn't be anything in -I../.., and in a minute, thereMarc G. Fournier1996-10-31
| | | | won't be...
* Move these files to ${SRCDIR}/includeMarc G. Fournier1996-10-31
|
* There is no -I../.. include files...Marc G. Fournier1996-10-31
|
* Added needed include file.Bruce Momjian1996-10-31
|
* Changed make to gmake.Bruce Momjian1996-10-31
| | | | Added needed include file.
* Added prototypes missing from parser patch.Bruce Momjian1996-10-31
| | | | Added needed include file.
* Fix memset() call, variables being passed in wrong order.Marc G. Fournier1996-10-30
| | | | Pointed out by: wieck@sapserv.debis.de
* Fixes:Marc G. Fournier1996-10-30
| | | | | | | | | | | | | | | | | 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 OverhaulBruce Momjian1996-10-30
|
* Fix small syntax error.Bryan Henderson1996-10-30
|
* Remove another snprintf() for Solaris.Bryan Henderson1996-10-29
|
* Use strncpy() and local buffers instead of snprintf(), since not everyoneBryan Henderson1996-10-28
| | | | has snprintf().
* Make a local isblank() function, since not all standard C libraries have it.Bryan Henderson1996-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 inBryan Henderson1996-10-28
| | | | the standard C library.
* Simplify make files, add full dependencies.Bryan Henderson1996-10-27
|
* Correct #if statement so it compiles on Solaris. Thanks Keith Parks.Bryan Henderson1996-10-26
|
* D'Arcy's cleanupsMarc G. Fournier1996-10-26
|
* Make sure the btree patch gets into 2.0 as well...Marc G. Fournier1996-10-25
| | | | Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Use EUROPEAN_DATES instead of EUROPEAN_STYLEBryan Henderson1996-10-25
|
* E Use EUROPEAN_DATES from config.h instead of -D optionBryan Henderson1996-10-25
|
* Fixes: Growing backend when using nested function callsMarc G. Fournier1996-10-24
| | | | Submitted by: wieck@sapserv.debis.de (Jan Wieck)
* Fixes: Errors when PQexec() in backend creates tempMarc G. Fournier1996-10-24
| | | | | | relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck)
* Fixes:Marc G. Fournier1996-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. Fournier1996-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
* Major code cleanups from D'arcy (-Wall -Werror)Marc G. Fournier1996-10-23
|
* Update "planner" directory to "optimizer" in include paths in this dead code.Bryan Henderson1996-10-23
|
* Cosmetic changes to ordering of #include filesMarc G. Fournier1996-10-21
|
* -Wall'dMarc G. Fournier1996-10-21
|
* -Wall'dMarc G. Fournier1996-10-21
|
* -Wall'd ... I missed a subdir under access :(Marc G. Fournier1996-10-21
|
* Make line 159:bp = NULL, to quiet compilerMarc G. Fournier1996-10-21
| | | | Suggested by: Randy Terbush <randy@zyzzyva.com>
* -Wall'dMarc G. Fournier1996-10-21
| | | | That finishes access/*