summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Even compile generated .h files should be in ${SRCDIR}/include...Marc G. Fournier1996-10-311-4/+4
|
* Well, normally there wouldn't be anything in -I../.., and in a minute, thereMarc G. Fournier1996-10-311-2/+1
| | | | won't be...
* Add these files to ${SRCDIR}/includeMarc G. Fournier1996-10-313-0/+1179
|
* Move these files to ${SRCDIR}/includeMarc G. Fournier1996-10-313-1179/+0
|
* There is no -I../.. include files...Marc G. Fournier1996-10-311-3/+2
|
* USE of PORTNAME_* should be discouraged wherever possible. The codeMarc G. Fournier1996-10-311-17/+17
| | | | | | | | | | | *should* be intelligent enough that: #if defined(__FreeBSD__) works, where __FreeBSD__ is actually defined by the compiler itself. Makefile.global used to have -DPORTNAME_<port> -D<port> as part of the flags for gcc while all occurances of PORTNAME_<port> slowly get removed from the source tree...
* Installed new FAQ's after I deleted them accidentally whileBruce Momjian1996-10-312-78/+73
| | | | removing duplicate names.
* Removed duplicate files.Bruce Momjian1996-10-312-556/+0
|
* Changed include path.Bruce Momjian1996-10-311-2/+2
|
* Added needed include file.Bruce Momjian1996-10-3114-13/+34
|
* Missing from parser patch.Bruce Momjian1996-10-311-7/+16
| | | | Added needed include file.
* changed define(port) to define(PORTNAME_port)Bruce Momjian1996-10-311-17/+17
| | | | Added needed include file.
* Changed make to gmake.Bruce Momjian1996-10-312-3/+4
| | | | Added needed include file.
* Added prototypes missing from parser patch.Bruce Momjian1996-10-312-2/+4
| | | | Added needed include file.
* Removed false and changed to a commented true.Bruce Momjian1996-10-311-3/+3
|
* Fix memset() call, variables being passed in wrong order.Marc G. Fournier1996-10-301-3/+3
| | | | Pointed out by: wieck@sapserv.debis.de
* Fixes: Incorrect syntax for copy commandMarc G. Fournier1996-10-301-4/+4
| | | | By: Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
* Changes to libpgtcl submitted by: wieck@sapserv.debis.de (Jan Wieck)Marc G. Fournier1996-10-307-119/+368
| | | | | | | | | | | | | | | Adds: -lAttributes Returns another format of the results attribute list. Per attribute a sublist of {{attname} atttype attlen} is returned and an empty string if no attributes where received. -numAttrs Returns the number of attributes in the result.
* commit a newer IRIX FAQ from AndrewMarc G. Fournier1996-10-301-0/+26
|
* Commit a newer fact for 1.09 from AndrewMarc G. Fournier1996-10-301-5/+15
|
* Fixes:Marc G. Fournier1996-10-304-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>
* Fix up INSTALL fileMarc G. Fournier1996-10-301-33/+35
| | | | From Andrew
* Parser OverhaulBruce Momjian1996-10-3010-495/+412
|
* Fix small syntax error.Bryan Henderson1996-10-301-2/+1
|
* Fix sigaction again to try for portability.Bryan Henderson1996-10-291-3/+3
|
* Remove another snprintf() for Solaris.Bryan Henderson1996-10-291-3/+10
|
* Slight changes to INSTALL to point ppl at the Linux/IRIX specificMarc G. Fournier1996-10-281-2/+4
| | | | FAQs
* Add in Andrew's FAQsMarc G. Fournier1996-10-282-0/+520
|
* Use strncpy() and local buffers instead of snprintf(), since not everyoneBryan Henderson1996-10-281-9/+12
| | | | has snprintf().
* Make a local isblank() function, since not all standard C libraries have it.Bryan Henderson1996-10-281-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 inBryan Henderson1996-10-283-5/+170
| | | | the standard C library.
* Simplify make files, add full dependencies.Bryan Henderson1996-10-27140-2314/+3271
|
* Correct #if statement so it compiles on Solaris. Thanks Keith Parks.Bryan Henderson1996-10-261-4/+2
|
* D'Arcy's cleanupsMarc G. Fournier1996-10-266-12/+19
|
* Make sure the btree patch gets into 2.0 as well...Marc G. Fournier1996-10-251-9/+50
| | | | Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
* Add CFLAGS+=-DPOSTPORT=... so we can take it out of the global CFLAGS.Bryan Henderson1996-10-251-1/+3
|
* Use EUROPEAN_DATES instead of EUROPEAN_STYLEBryan Henderson1996-10-251-11/+8
|
* E Use EUROPEAN_DATES from config.h instead of -D optionBryan Henderson1996-10-251-1/+3
|
* Fixes: Growing backend when using nested function callsMarc G. Fournier1996-10-241-1/+32
| | | | Submitted by: wieck@sapserv.debis.de (Jan Wieck)
* Fixes: Errors when PQexec() in backend creates tempMarc G. Fournier1996-10-244-8/+30
| | | | | | relations and transaction is aborted Submitted by: wieck@sapserv.debis.de (Jan Wieck)
* Fixes:Marc G. Fournier1996-10-241-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. Fournier1996-10-242-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
* Bruce...does this fix it once and for all? *grin*Marc G. Fournier1996-10-241-1/+1
|
* Major code cleanups from D'arcy (-Wall -Werror)Marc G. Fournier1996-10-2344-147/+249
|
* |I have moved things around so that things happen in the following order:Marc G. Fournier1996-10-231-27/+26
| | | | | | | | | | | | | 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 Henderson1996-10-232-15/+15
|
* Cosmetic changes to ordering of #include filesMarc G. Fournier1996-10-217-146/+133
|
* -Wall'dMarc G. Fournier1996-10-214-109/+207
|
* -Wall'dMarc G. Fournier1996-10-213-35/+145
|
* -Wall'd ... I missed a subdir under access :(Marc G. Fournier1996-10-213-3/+33
|