summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datum.c
Commit message (Collapse)AuthorAgeFilesLines
* Change my-function-name-- to my_function_name, and optimizer renames.Bruce Momjian1999-02-131-2/+2
|
* Renaming cleanup, no pgindent yet.Bruce Momjian1998-09-011-9/+9
|
* Remove un-needed braces around single statements.Bruce Momjian1998-06-151-7/+1
|
* Change some ABORTS to ERROR. Add line number when COPY Failure.Bruce Momjian1998-01-051-4/+4
|
* Change elog(WARN) to elog(ERROR) and elog(ABORT).Bruce Momjian1998-01-051-4/+4
|
* Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian1997-09-081-11/+11
| | | | indenting. Also static variable indenting.
* Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian1997-09-071-98/+123
|
* Make functions static where possible, enclose unused functions in #ifdef ↵Bruce Momjian1997-08-191-1/+3
| | | | NOT_USED.
* Avoiding:Vadim B. Mikheev1996-12-141-2/+2
| | | | | | | | | | | | | | | cc1: warnings being treated as errors datum.c: In function `DatumGetSize': datum.c:57: warning: unsigned value >= 0 is always 1 gmake[3]: *** [datum.o] Error 1 There was: if (byVal) { if (len >= 0 && len <= sizeof(Datum)) { but len has type Size (unsigned int) and so now there is: if (byVal) { if (len <= sizeof(Datum)) {
* Compile and warning cleanupBruce Momjian1996-11-081-2/+2
|
* Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>Marc G. Fournier1996-11-061-2/+1
|
* Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01Marc G. Fournier1996-07-091-0/+201