Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Emit a warning when an empty string is input to the oid, float4, and | Neil Conway | 2004-03-04 | 1 | -4/+16 | |
| | | | | | | | | float8 types. This begins the deprecation of this feature: in 7.6, this input will be rejected. Also added a new error code for warnings about deprecated features, and updated the regression tests. | |||||
* | Improve the consistency of the error message emitted when rejecting | Neil Conway | 2004-02-18 | 1 | -6/+6 | |
| | | | | | invalid input to the oid type. Also, remove some long-unused code from adt/numutils.c | |||||
* | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 | |
| | ||||||
* | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 | 1 | -6/+6 | |
| | | | | | terms, add some clarifications, fix some untranslatable attempts at dynamic message building. | |||||
* | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 | |
| | ||||||
* | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -5/+1 | |
| | ||||||
* | Error message editing in utils/adt. Again thanks to Joe Conway for doing | Tom Lane | 2003-07-27 | 1 | -12/+25 | |
| | | | | the bulk of the heavy lifting ... | |||||
* | Binary send/receive routines for a few basic datatypes --- enough for | Tom Lane | 2003-05-09 | 1 | -4/+65 | |
| | | | | testing purposes. | |||||
* | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 | |
| | ||||||
* | sum() on int2 and int4 columns now uses an int8, not numeric, accumulator | Tom Lane | 2001-08-14 | 1 | -1/+19 | |
| | | | | | | | | | | | | | | | | | | | | for speed reasons; its result type also changes to int8. avg() on these datatypes now accumulates the running sum in int8 for speed; but we still deliver the final result as numeric, so that fractional accuracy is preserved. count() now counts and returns in int8, not int4. I am a little nervous about this possibly breaking users' code, but there didn't seem to be a strong sentiment for avoiding the problem. If we get complaints during beta, we can change count back to int4 and add a "count8" aggregate. For that matter, users can do it for themselves with a simple CREATE AGGREGATE command; the int4inc function is still present, so no C hacking is needed. Also added max() and min() aggregates for OID that do proper unsigned comparison, instead of piggybacking on int4 aggregates. initdb forced. | |||||
* | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 | 1 | -28/+27 | |
| | ||||||
* | Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group. | Bruce Momjian | 2001-01-24 | 1 | -2/+2 | |
| | ||||||
* | Let's try this again on accepting the correct range of Oid input values | Tom Lane | 2000-12-28 | 1 | -4/+11 | |
| | | | | for 64-bit platforms ... | |||||
* | Repair not-too-well-thought-out code to do rangechecking of OIDs on | Tom Lane | 2000-12-22 | 1 | -52/+88 | |
| | | | | 64-bit machines. Also, make oidvectorin use the same code as oidin. | |||||
* | Ensure that all uses of <ctype.h> functions are applied to unsigned-char | Tom Lane | 2000-12-03 | 1 | -4/+4 | |
| | | | | | values, whether the local char type is signed or not. This is necessary for portability. Per discussion on pghackers around 9/16/00. | |||||
* | Add missing #include <errno.h>. | Tom Lane | 2000-11-21 | 1 | -3/+4 | |
| | ||||||
* | Make oidin/oidout produce and consume unsigned representation of Oid, | Tom Lane | 2000-11-21 | 1 | -27/+68 | |
| | | | | | | | | | | | | rather than just being aliases for int4in/int4out. Give type Oid a full set of comparison operators that do proper unsigned comparison, instead of reusing the int4 comparators. Since pg_dump is now doing unsigned comparisons of OIDs, it is now *necessary* that we play by the rules here. In fact, given that btoidcmp() has been doing unsigned comparison for quite some time, it seems likely that we have index- corruption problems in 7.0 and before once the Oid counter goes past 2G. Fixing these operators is a necessary step before we can think about 8-byte Oid, too. | |||||
* | Convert all remaining float4 and float8 functions to new fmgr style. | Tom Lane | 2000-08-01 | 1 | -2/+2 | |
| | | | | | | 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. | |||||
* | TOAST | Jan Wieck | 2000-07-03 | 1 | -2/+2 | |
| | | | | | | | | WARNING: This is actually broken - we have self-deadlocks due to concurrent changes in buffer management. Vadim and me are working on it. Jan | |||||
* | Big warnings cleanup for Solaris/GCC. Down to about 40 now, but | Peter Eisentraut | 2000-06-14 | 1 | -4/+4 | |
| | | | | | | | | | | | we'll get there one day. Use `cat' to create aclocal.m4, not `aclocal'. Some people don't have automake installed. Only run the autoconf rule in the top-level GNUmakefile if the invoker specified `make configure', don't run it automatically because of CVS timestamp skew. | |||||
* | Latest round of fmgr updates. All functions with bool,char, or int2 | Tom Lane | 2000-06-05 | 1 | -86/+107 | |
| | | | | | | | inputs have been converted to newstyle. This should go a long way towards fixing our portability problems with platforms where char and short parameters are passed differently from int-width parameters. Still more to do for the Alpha port however. | |||||
* | Ye-old pgindent run. Same 4-space tabs. | Bruce Momjian | 2000-04-12 | 1 | -6/+7 | |
| | ||||||
* | Add: | Bruce Momjian | 2000-01-26 | 1 | -2/+3 | |
| | | | | | | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files. | |||||
* | Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions. | Bruce Momjian | 2000-01-10 | 1 | -13/+13 | |
| | ||||||
* | Update int28out and out8out and _in_ functions to handle trailing zeros | Bruce Momjian | 2000-01-10 | 1 | -11/+21 | |
| | | | | properly. | |||||
* | Fix oid8in and int28in for spaces | Bruce Momjian | 2000-01-10 | 1 | -2/+3 | |
| | ||||||
* | Move INDEX_MAX_KEYS to postgres.h, and make it configurable for users. | Bruce Momjian | 2000-01-10 | 1 | -23/+20 | |
| | ||||||
* | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 | 1 | -3/+1 | |
| | ||||||
* | Final cleanup. | Bruce Momjian | 1999-07-16 | 1 | -1/+1 | |
| | ||||||
* | Update #include cleanups | Bruce Momjian | 1999-07-16 | 1 | -2/+2 | |
| | ||||||
* | Clean up #include in /include directory. Add scripts for checking includes. | Bruce Momjian | 1999-07-15 | 1 | -2/+1 | |
| | ||||||
* | Cleanup of /include #include's, for 6.6 only. | Bruce Momjian | 1999-07-14 | 1 | -1/+2 | |
| | ||||||
* | Change error messages to oids come out as %u and not %d. Change has no | Bruce Momjian | 1999-05-10 | 1 | -2/+2 | |
| | | | | real affect now. | |||||
* | Change my-function-name-- to my_function_name, and optimizer renames. | Bruce Momjian | 1999-02-13 | 1 | -2/+2 | |
| | ||||||
* | Add oid8neq. | Bruce Momjian | 1998-10-29 | 1 | -1/+7 | |
| | ||||||
* | Cleanup for oid8[] from Tatsuo Ishii. | Bruce Momjian | 1998-09-22 | 1 | -15/+16 | |
| | ||||||
* | cleanup | Bruce Momjian | 1998-09-01 | 1 | -4/+4 | |
| | ||||||
* | OK, folks, here is the pgindent output. | Bruce Momjian | 1998-09-01 | 1 | -10/+14 | |
| | ||||||
* | Renaming cleanup, no pgindent yet. | Bruce Momjian | 1998-09-01 | 1 | -21/+21 | |
| | ||||||
* | heap_fetch requires buffer pointer, must be released; heap_getnext | Bruce Momjian | 1998-08-19 | 1 | -1/+41 | |
| | | | | | | | | | | | | | no longer returns buffer pointer, can be gotten from scan; descriptor; bootstrap can create multi-key indexes; pg_procname index now is multi-key index; oidint2, oidint4, oidname are gone (must be removed from regression tests); use System Cache rather than sequential scan in many places; heap_modifytuple no longer takes buffer parameter; remove unused buffer parameter in a few other functions; oid8 is not index-able; remove some use of single-character variable names; cleanup Buffer variables usage and scan descriptor looping; cleaned up allocation and freeing of tuples; 18k lines of diff; | |||||
* | pgindent run before 6.3 release, with Thomas' requested changes. | Bruce Momjian | 1998-02-26 | 1 | -20/+20 | |
| | ||||||
* | Goodbye register keyword. Compiler knows better. | Bruce Momjian | 1998-02-11 | 1 | -5/+5 | |
| | ||||||
* | Allow varchar() to only store needed bytes. Remove PALLOC,PALLOCTYPE,PFREE. ↵ | Bruce Momjian | 1998-01-07 | 1 | -5/+5 | |
| | | | | Clean up use of VARDATA. | |||||
* | Add conversion routines for oid to and from text. | Thomas G. Lockhart | 1997-10-25 | 1 | -4/+44 | |
| | ||||||
* | Used modified version of indent that understands over 100 typedefs. | Bruce Momjian | 1997-09-08 | 1 | -4/+4 | |
| | ||||||
* | Another PGINDENT run that changes variable indenting and case label ↵ | Bruce Momjian | 1997-09-08 | 1 | -10/+10 | |
| | | | | indenting. Also static variable indenting. | |||||
* | Massive commit to run PGINDENT on all *.c and *.h files. | Bruce Momjian | 1997-09-07 | 1 | -71/+82 | |
| | ||||||
* | Major patch to speed up backend startup after profiling analysis. | Bruce Momjian | 1997-08-24 | 1 | -1/+5 | |
| | ||||||
* | Various compile errors concerning overflow due to shifts, unsigned, and bad ↵ | Bruce Momjian | 1997-07-24 | 1 | -5/+1 | |
| | | | | prototypes, from Solaris, from Diab Jerius | |||||
* | Date/Time updates from Thomas... | Marc G. Fournier | 1997-03-14 | 1 | -5/+5 | |
| |