summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Collapse)AuthorAgeFilesLines
* More include file cleanupsMarc G. Fournier1996-11-034-171/+10
|
* That pretty much totally cleans up the includes files here.Marc G. Fournier1996-11-034-25/+16
|
* Include Makefile.global so fmgrtab.c compiles properly. Thanks Keith Parks.Bryan Henderson1996-11-031-1/+4
|
* Fix bogus format in two error messages.Bryan Henderson1996-11-031-3/+3
|
* Finish cleaning up -I linesMarc G. Fournier1996-11-034-14/+8
|
* Keep the generated .h files in the local directory, like other object files,Bryan Henderson1996-11-031-23/+28
| | | | | rather than in src/include with normal header files. Necessary to make dependancies work out so they don't keep getting rebuilt for no reason.
* More include file cleanupsMarc G. Fournier1996-11-037-59/+16
|
* Quiet a compiler warning (see line 729+, retvalue)Marc G. Fournier1996-11-031-1/+3
|
* Remove 'unused variable `open_errno''Marc G. Fournier1996-11-031-5/+1
|
* Produce a clean compile of backend...Marc G. Fournier1996-11-0329-75/+73
|
* Clean up Makefile(s)Marc G. Fournier1996-11-0325-64/+52
| | | | | | Add #include "postgres.h" as required Remove #include "c.h" *and* "utils/elog.h" as applicable
* Clean up MakefileMarc G. Fournier1996-11-036-14/+19
| | | | | | Add #include "postgres.h" as required Remove #include "utils/elog.h"
* Clean up Makefile, add #postgres.h as requiredMarc G. Fournier1996-11-032-5/+6
|
* Clean up Makefile, make sure that postmaster.c compilesMarc G. Fournier1996-11-032-6/+6
|
* Convenience routine for checking superuser status.Bryan Henderson1996-11-022-0/+80
|
* Add misc subdirectory.Bryan Henderson1996-11-021-7/+15
|
* Fix bug in checking permissions on table being COPY'd.Bryan Henderson1996-11-021-143/+119
|
* Allow only superuser to do backend copy.Bryan Henderson1996-11-022-505/+537
|
* More intelligent #include cleanups, as pointed out by Bryan...Marc G. Fournier1996-11-018-103/+36
| | | | Compiled with -Wall -Werror
* Okay, so I was going backwards on my include cleanup...Marc G. Fournier1996-11-011-34/+7
| | | | Pointed out by Bryan (in a subtle way *grin*)
* More chanes for bsdi_2_1 removalBruce Momjian1996-11-012-3/+7
|
* Removal of bsdi_2_1 port.Bruce Momjian1996-11-017-111/+18
|
* Fix for gmake clean.Bruce Momjian1996-10-311-2/+2
|
* Add #include "postgres.h"Marc G. Fournier1996-10-312-3/+5
|
* Cleanup MakefilesMarc G. Fournier1996-10-3116-31/+49
| | | | | | Add #include "postgres.h" and #include <sys/types.h>
* More Makefile cleanupsMarc G. Fournier1996-10-312-6/+7
| | | | Add #include "postgres.h" as required
* clean up makefileMarc G. Fournier1996-10-317-19/+24
| | | | add #include "postgres.h"
* Clean out makefileMarc G. Fournier1996-10-316-12/+17
| | | | add #include "postgres.h"
* more removal of PORTNAME_*Marc G. Fournier1996-10-316-39/+39
|
* more removals of PORTNAME_*Marc G. Fournier1996-10-313-27/+27
|
* remove use of PORTNAME_*Marc G. Fournier1996-10-313-13/+13
|
* add #include "postgres.h", as required by all .c filesMarc G. Fournier1996-10-3121-20/+64
|
* Require superuser privilege to create C function.Bryan Henderson1996-10-312-400/+463
|
* More of the same...clean Makefile, add include filesMarc G. Fournier1996-10-315-14/+42
|
* Same clean up of Makefile, and addition of include filesMarc G. Fournier1996-10-314-7/+11
|
* Cleaned out -I../.. -I../../include from MakefileMarc G. Fournier1996-10-314-7/+12
| | | | Added missing include files
* Remove -I../.. and -I../../include from MakefileMarc G. Fournier1996-10-319-34/+53
| | | | Add some missing include files
* Add a couple of missing includesMarc G. Fournier1996-10-314-10/+24
|
* Added misc include filesMarc G. Fournier1996-10-314-4/+8
|
* .h files shouldn't include .h files, .c files should contain .h files...Marc G. Fournier1996-10-311-5/+3
| | | | remove postgres.h from fmgr.h creation
* 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...
* 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
|
* Added needed include file.Bruce Momjian1996-10-317-7/+17
|
* 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.
* Fix memset() call, variables being passed in wrong order.Marc G. Fournier1996-10-301-3/+3
| | | | Pointed out by: wieck@sapserv.debis.de
* 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>
* Parser OverhaulBruce Momjian1996-10-305-480/+391
|