aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* More intelligent #include cleanups, as pointed out by Bryan...Marc G. Fournier1996-11-01
| | | | Compiled with -Wall -Werror
* Okay, following Bryan's (and others) suggestions...cleaning up theMarc G. Fournier1996-11-01
| | | | include files properly...yet, slowly...
* Include dependencies based on tupdesc.h, as:Marc G. Fournier1996-11-01
| | | | | | | | access/tupdesc.h catalog/pg_attribute.h nodes/pg_list.h nodes/nodes.h access/attnum.h
* Include file cleanup:Marc G. Fournier1996-11-01
| | | | | | | | | | | Based on include files require by htup.h, as: access/htup.h storage/itemptr.h storage/block.h storage/off.h utils/nabstime.h <time.h>
* Okay, so I was going backwards on my include cleanup...Marc G. Fournier1996-11-01
| | | | Pointed out by Bryan (in a subtle way *grin*)
* More chanes for bsdi_2_1 removalBruce Momjian1996-11-01
|
* Decoupled ASSERT and DEBUG options.Bruce Momjian1996-11-01
|
* FIx for bsdi.Bruce Momjian1996-11-01
|
* Removal of bsdi_2_1 port.Bruce Momjian1996-11-01
|
* typo fix on include file.Bruce Momjian1996-10-31
|
* Fix prototype.Bruce Momjian1996-10-31
|
* Fix for gmake clean.Bruce Momjian1996-10-31
|
* 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
|
* remove:Marc G. Fournier1996-10-31
| | | | | #include "postgres.h" #include "c.h"
* 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...
* Add these files to ${SRCDIR}/includeMarc G. Fournier1996-10-31
|
* Move these files to ${SRCDIR}/includeMarc G. Fournier1996-10-31
|
* There is no -I../.. include files...Marc G. Fournier1996-10-31
|
* USE of PORTNAME_* should be discouraged wherever possible. The codeMarc G. Fournier1996-10-31
| | | | | | | | | | | *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...
* Changed include path.Bruce Momjian1996-10-31
|
* Added needed include file.Bruce Momjian1996-10-31
|
* Missing from parser patch.Bruce Momjian1996-10-31
| | | | Added needed include file.
* changed define(port) to define(PORTNAME_port)Bruce Momjian1996-10-31
| | | | Added needed include file.
* 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.
* Removed false and changed to a commented true.Bruce Momjian1996-10-31
|
* Fix memset() call, variables being passed in wrong order.Marc G. Fournier1996-10-30
| | | | Pointed out by: wieck@sapserv.debis.de
* Changes to libpgtcl submitted by: wieck@sapserv.debis.de (Jan Wieck)Marc G. Fournier1996-10-30
| | | | | | | | | | | | | | | 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.
* 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
|
* Fix sigaction again to try for portability.Bryan Henderson1996-10-29
|
* Remove another snprintf() for Solaris.Bryan Henderson1996-10-29
|