aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/heaptuple.c
Commit message (Collapse)AuthorAge
...
* Symptom:Marc G. Fournier1998-02-05
| | | | | | | | select from a table with attrs (a int, b char(20)) crashed in bpcharout() (palloc of -1 bytes). But a table with attrs (a int, b varchar(20)) worked. From: Jan Wieck <jwieck@debis.com>
* char() cleanup and more cacheoff improvements.Bruce Momjian1998-02-05
|
* Cleanup getattr code. Make CHAR() use attcacheoff.Bruce Momjian1998-02-04
|
* Inline fastgetattr and others so data access does not use functionBruce Momjian1998-01-31
| | | | calls.
* Goodbye ABORT. Hello ERROR for all errors.Bruce Momjian1998-01-07
|
* Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian1998-01-05
|
* Good Bye, Time Travel!Vadim B. Mikheev1997-11-02
|
* Coerce type of NULL pointer return to suppress gcc compiler warnings.Thomas G. Lockhart1997-09-24
|
* Inline memset() as MemSet().Bruce Momjian1997-09-18
|
* heapattr functions now return a Datum, not char *.Bruce Momjian1997-09-12
|
* Used modified version of indent that understands over 100 typedefs.Bruce Momjian1997-09-08
|
* Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian1997-09-08
| | | | indenting. Also static variable indenting.
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-07
|
* Inlined heap_getattr().Bruce Momjian1997-08-26
|
* Major patch to speed up backend startup after profiling analysis.Bruce Momjian1997-08-24
|
* Make functions static where possible, enclose unused functions in #ifdef ↵Bruce Momjian1997-08-19
| | | | NOT_USED.
* Add comments describing interface to heap_getattr().Bryan Henderson1996-12-09
|
* Change portname "sparc" to "sunos4" and change some portname dependencies toBryan Henderson1996-12-04
| | | | feature dependencies. Thanks Kurt J. Lidl.
* All external function definitions now have prototypes that are checked.Bruce Momjian1996-11-10
|
* Re-add -I../.. for fmgr.hMarc G. Fournier1996-11-05
| | | | | | | | Change #include "" to #include <> Remove a few unused #includes Make sure it compiles with -Wall -Werror
* Clean up a few of the #include filesMarc G. Fournier1996-11-05
|
* More include file cleanupsMarc G. Fournier1996-11-03
|
* More intelligent #include cleanups, as pointed out by Bryan...Marc G. Fournier1996-11-01
| | | | Compiled with -Wall -Werror
* Okay, so I was going backwards on my include cleanup...Marc G. Fournier1996-11-01
| | | | Pointed out by Bryan (in a subtle way *grin*)
* Added misc include filesMarc G. Fournier1996-10-31
|
* Cosmetic changes to ordering of #include filesMarc G. Fournier1996-10-21
|
* Other then:Marc G. Fournier1996-10-20
| | | | | | indextuple.c:159: warning: `bp' might be used uninitialized in this function this directory passes -Wall -Werror under FreeBSD
* First pass at fixing my own mistakesMarc G. Fournier1996-10-20
| | | | | | Mainly...fix up the includes I removed, as well as prototypes Pointed out by D'Arcy
* There...that pretty much cleans up redundant/unused #includes inMarc G. Fournier1996-10-19
| | | | access/common...how many more directories to go? :)
* All #include's removed from *.h files, so cleaning up the .c #includes...Marc G. Fournier1996-10-18
| | | | First file of, what...1000's?
* A few changes to cleanup the code.Marc G. Fournier1996-09-19
| | | | | | | | | | | | | | | | | | - Added the header access/heapam.h. - Changed all instances of "length" to "data_length" to quiet the compiler. - initialized a few variables. The compiler couldn't see that the code guaranteed that these would be initialized before being dereferenced. If anyone wants to check my work follow the usage of these variables and make sure that this true and wasn't actually a bug in the original code. - added a missing break statement to a default case. This was a benign error but bad style. - layed out heap_sysattrlen differently. I think this way makes the structure of the code crystal clear. There should be no actual difference in the actual behaviour of the code. Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
* added #include "config.h" for ESCAPE_PATCH defineMarc G. Fournier1996-08-27
|
* Fixes:Marc G. Fournier1996-08-13
| | | | | | | | | | | | | | | | | | Here's a small patch that my run-time checker whines about incessantly. The justification for the patch is along the lines of passing a NULL is allowed if you have an arguement that is a *POINTER* to something, but if the arguement is an array reference, it's not really a "pointer", so it can't be NULL. If you question this, I refer you to <URL:http://www.va.pubnix.com/staff/djm/lore/arrays-are-not-pointers> Anyways, here's the patch: -Kurt Submitted by: "Kurt J. Lidl" <lidl@va.pubnix.com>
* Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier1996-07-09