Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-04 | pgindent run. | Bruce Momjian | |
2002-08-27 | Bring comments back in sync with code. | Tom Lane | |
2002-08-27 | Throw error on pg_atoi(''), regression adjustments. | Bruce Momjian | |
2002-07-16 | Oops, sometimes strtol isn't called in pg_atoi, so we do need that badp | Bruce Momjian | |
check. | |||
2002-07-16 | Fix tid to in/out as unsigned. | Bruce Momjian | |
2002-06-20 | Update copyright to 2002. | Bruce Momjian | |
2001-11-05 | New pgindent run with fixes suggested by Tom. Patch manually reviewed, | Bruce Momjian | |
initdb/regression tests pass. | |||
2001-10-28 | Another pgindent run. Fixes enum indenting, and improves #endif | Bruce Momjian | |
spacing. Also adds space for one-line comments. | |||
2001-10-25 | pgindent run on all C files. Java run to follow. initdb/regression | Bruce Momjian | |
tests pass. | |||
2001-03-22 | pgindent run. Make it all clean. | Bruce Momjian | |
2001-01-24 | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | |
2000-10-22 | Makeover for Unixware 7.1.1 | Peter Eisentraut | |
* Makefile: Add more standard targets. Improve shell redirection in GNU make detection. * src/backend/access/transam/rmgr.c: Fix incorrect(?) C. * src/backend/libpq/pqcomm.c (StreamConnection): Work around accept() bug. * src/include/port/unixware.h: ...with help from here. * src/backend/nodes/print.c (plannode_type): Remove some "break"s after "return"s. * src/backend/tcop/dest.c (DestToFunction): ditto. * src/backend/nodes/readfuncs.c: Add proper prototypes. * src/backend/utils/adt/numutils.c (pg_atoi): Cope specially with strtol() setting EINVAL. This saves us from creating an extra set of regression test output for the affected systems. * src/include/storage/s_lock.h (tas): Correct prototype. * src/interfaces/libpq/fe-connect.c (parseServiceInfo): Don't use variable as dimension in array definition. * src/makefiles/Makefile.unixware: Add support for GCC. * src/template/unixware: same here * src/test/regress/expected/abstime-solaris-1947.out: Adjust whitespace. * src/test/regress/expected/horology-solaris-1947.out: Part of this file was evidently missing. * src/test/regress/pg_regress.sh: Fix shell. mkdir -p returns non-zero if the directory exists. * src/test/regress/resultmap: Add entries for Unixware. | |||
2000-08-01 | Convert all remaining float4 and float8 functions to new fmgr style. | Tom Lane | |
At this point I think it'd be possible to make float4 be pass-by-value without too much work --- and float8 too on machines where Datum is 8 bytes. Something to try when the mood strikes, anyway. | |||
2000-07-12 | Remove a bunch of unused configure tests, in particular cases where | Peter Eisentraut | |
* the result is not recorded anywhere * the result is not used anywhere * the result is only used in some places, whereas others have been getting away with it * the result is used improperly Also make command line options handling a little better (e.g., --disable-locale, while redundant, should really still *dis*able). | |||
2000-04-12 | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | |
2000-01-26 | Add: | Bruce Momjian | |
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files. | |||
1999-07-17 | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | |
1999-07-16 | Final cleanup. | Bruce Momjian | |
1999-07-16 | Update #include cleanups | Bruce Momjian | |
1999-07-15 | Remove unused #includes in *.c files. | Bruce Momjian | |
1999-07-10 | cleanup of long long int atoi test. | Bruce Momjian | |
1999-07-09 | Re-apply range check patch after fixing LIMIT_H test and defines. | Bruce Momjian | |
1999-07-09 | Backup pg_atoi patch for long checking. Caused initdb problems. | Bruce Momjian | |
1999-07-08 | pg_atoi() does range check on int4 data only if | Bruce Momjian | |
"HAS_LONG_LONG" is defined based on the assumption that strtol() would return ERANGE if a platform does not support 64-bit integers. In current PostgreSQL 6.5 (and 6.4.2) distribution, "HAS_LONG_LONG" is defined only if platform is "alpha". (See include/port/alpha.h) I think the int4 range check should apply to linux_alpha as well. (I have not tested yet but I guess this might be applicable to newer Linux/i386 distributions which includes new GCC which implements long int as 64-bit int.) | |||
1999-05-25 | pgindent run over code. | Bruce Momjian | |
1999-02-13 | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | |
1998-10-02 | Search contrib/tcl for tcl startup. | Bruce Momjian | |
1998-09-12 | The pg_atoi() function uses strtol() to convert the string to numbers. Some | Bruce Momjian | |
implementations of strtol() treat empty strings ("") as invalid arguments while others convert this (erroneously, IHMO) to zero (0). Assuming that the expected behaviour of pg_atoi() is to return 0 if it is passed an empty string, I am supplying the following patch to explictly check for an empty string in pg_atoi() and return 0 if the string is empty. The patch will also trap a NULL character pointer being passed to pg_atoi() and will use elog() to print out an error message if the input char pointer is NULL. Billy G. Allie | |||
1998-09-01 | OK, folks, here is the pgindent output. | Bruce Momjian | |
1998-09-01 | Renaming cleanup, no pgindent yet. | Bruce Momjian | |
1998-06-15 | Remove un-needed braces around single statements. | Bruce Momjian | |
1998-02-26 | pgindent run before 6.3 release, with Thomas' requested changes. | Bruce Momjian | |
1998-02-11 | Goodbye register keyword. Compiler knows better. | Bruce Momjian | |
1998-01-05 | Change some ABORTS to ERROR. Add line number when COPY Failure. | Bruce Momjian | |
1998-01-05 | Change elog(WARN) to elog(ERROR) and elog(ABORT). | Bruce Momjian | |
1997-12-20 | First clean compile without a "PORTNAME" variable being set... | Marc G. Fournier | |
1997-12-19 | More cleanups. I can now compile without PORTNAME being defined n | Marc G. Fournier | |
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :) | |||
1997-11-17 | Use limits.h for INT, SHRT, and SCHAR min and max values rather than | Thomas G. Lockhart | |
hardcoded values. | |||
1997-09-18 | Inline memset() as MemSet(). | Bruce Momjian | |
1997-09-08 | Another PGINDENT run that changes variable indenting and case label ↵ | Bruce Momjian | |
indenting. Also static variable indenting. | |||
1997-09-07 | Massive commit to run PGINDENT on all *.c and *.h files. | Bruce Momjian | |
1997-08-19 | Make functions static where possible, enclose unused functions in #ifdef ↵ | Bruce Momjian | |
NOT_USED. | |||
1997-08-12 | Remove more (void) and fix -Wall warnings. | Bruce Momjian | |
1997-08-12 | Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵ | Bruce Momjian | |
some (void) casts that are unnecessary. | |||
1997-04-22 | Add fcvt() as a check to configure so that we can get rid of the BSD44_derived | Marc G. Fournier | |
type check in numutils.c:ftoa() Pointed out by: "Martin J. Laubach" <mjl@emsi.priv.at> | |||
1997-04-13 | Add ccsym to tools to determine OS/compiler specific symbols | Marc G. Fournier | |
Change BSD44_derived to __FreeBSD__ in numutils.c (need to know what NetBSD is referred to as...someone?) | |||
1996-12-28 | Here's the final set of patches to 6.0 (sup'd on 27/12/96) that allow a full | Bruce Momjian | |
gmake of the code without interruption. There's also some tidy-up of the MAXPATHLEN stuff based on the assumption that all supported platforms have MAXPATHLEN defined in <sys/param.h>. (The only unknowns for the above are AIX and IRIX5.) | |||
1996-11-27 | More stuff to make it compile on various ports. | Bryan Henderson | |
1996-11-06 | Another directory that compiles with no errors, and few warnings | Marc G. Fournier | |
1996-11-06 | Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk> | Marc G. Fournier | |