Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Cosmetic code cleanup: fix a bunch of places that used "return (expr);" | Neil Conway | 2006-01-11 |
| | | | | | | rather than "return expr;" -- the latter style is used in most of the tree. I kept the parentheses when they were necessary or useful because the return expression was complex. | ||
* | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 |
| | |||
* | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 |
| | |||
* | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 |
| | |||
* | More message editing, some suggested by Alvaro Herrera | Peter Eisentraut | 2003-09-29 |
| | |||
* | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 |
| | | | | | terms, add some clarifications, fix some untranslatable attempts at dynamic message building. | ||
* | pgindent run. | Bruce Momjian | 2003-08-04 |
| | |||
* | Error message editing in utils/adt. Again thanks to Joe Conway for doing | Tom Lane | 2003-07-27 |
| | | | | the bulk of the heavy lifting ... | ||
* | More binary I/O routines. | Tom Lane | 2003-05-13 |
| | |||
* | Make macaddr_in reject trailing garbage (except whitespace). | Tom Lane | 2002-10-13 |
| | | | | Per gripe from Patrick Welche, 13-Oct-2002. | ||
* | pgindent run. | Bruce Momjian | 2002-09-04 |
| | |||
* | backend where a statically sized buffer is written to. Most of these | Bruce Momjian | 2002-08-28 |
| | | | | | | | | | | | should be pretty safe in practice, but it's probably better to be safe than sorry. I was actually looking for cases where NAMEDATALEN is assumed to be 32, but only found one. That's fixed too, as well as a few bits of code cleanup. Neil Conway | ||
* | Merge ALTER GROUP ADD/DROP rules by creating add_drop action. | Bruce Momjian | 2002-06-17 |
| | |||
* | The macaddr datatype understands most formats of MAC address, except 12 | Bruce Momjian | 2002-06-15 |
| | | | | | | | hex digits with no separators, eg 00AABBCCDDEE. This is easily remedied with the following patch (against 7.2.1): Mike Wyer | ||
* | Code review for improved-hashing patch. Fix some portability issues | Tom Lane | 2002-03-09 |
| | | | | | (char != unsigned char, Datum != uint32); make use of new hash code in dynahash hash tables and hash joins. | ||
* | Remove special-case treatment of all-zeroes MAC address, per today's | Tom Lane | 2001-08-21 |
| | | | | discussion in pgsql-general. | ||
* | pgindent run. Make it all clean. | Bruce Momjian | 2001-03-22 |
| | |||
* | Repair erroneous use of hashvarlena() for MACADDR, which is not a | Tom Lane | 2000-12-08 |
| | | | | | | | varlena type. (I did not force initdb, but you won't see the fix unless you do one.) Also, make sure all index support operators and functions are careful not to leak memory for toasted inputs; I had missed some hash and rtree support ops on this point before. | ||
* | Add functions to convert to and from text, and to truncate to MAC OUI. | Thomas G. Lockhart | 2000-08-23 |
| | | | | | Remove hardcoded macaddr_manuf(), which had really old, obsolete info. Replace this with some contrib/mac/ code to maniag OUI info from IEEE. | ||
* | Convert inet-related functions to new fmgr style. I have also taken it | Tom Lane | 2000-08-03 |
| | | | | | | | | on myself to do something about the non-self-consistency of the inet comparison functions. The results are probably still semantically wrong (inet and cidr should have different comparison semantics, I think) but at least the boolean operators now agree with each other and with the sort order of indexes on inet/cidr. | ||
* | Functions on 'text' type updated to new fmgr style. 'text' is | Tom Lane | 2000-07-06 |
| | | | | now TOAST-able. | ||
* | TOAST | Jan Wieck | 2000-07-03 |
| | | | | | | | | WARNING: This is actually broken - we have self-deadlocks due to concurrent changes in buffer management. Vadim and me are working on it. Jan | ||
* | Ethernet MAC addresses (macaddr type) are not compared correctly for | Bruce Momjian | 1999-12-16 |
| | | | | | | | | | | | | | | | equality. The lobits macro is wrong and extracts the wrong set of bits out of the structure. To exhibit the problem: select '000000:000000'::macaddr = '000000:110000'::macaddr ; ?column? -------- t (1 row) Daniel Boyd | ||
* | Move some system includes into c.h, and remove duplicates. | Bruce Momjian | 1999-07-17 |
| | |||
* | Change #include's to use <> and "" as appropriate. | Bruce Momjian | 1999-07-15 |
| | |||
* | Remove unused #includes in *.c files. | Bruce Momjian | 1999-07-15 |
| | |||
* | Clean up #include in /include directory. Add scripts for checking includes. | Bruce Momjian | 1999-07-15 |
| | |||
* | Cleanup of /include #include's, for 6.6 only. | Bruce Momjian | 1999-07-14 |
| | |||
* | pgindent run over code. | Bruce Momjian | 1999-05-25 |
| | |||
* | Cleanup of NULL in inet types. | Bruce Momjian | 1999-03-22 |
| | |||
* | Get rid of some minor compiler warnings. | Tom Lane | 1998-10-26 |
| | |||
* | Fix for INET type addition. | Bruce Momjian | 1998-10-08 |
| | |||
* | I agree. I think, though, that the best argument presented in the | Bruce Momjian | 1998-10-08 |
| | | | | | | | debate was from Paul Vixie, who wanted INET to be the name covering both IPV4 and IPV6. The following kit makes the needed changes: Tom Ivar Helbekkmo | ||
* | Add includes for prototypes for new IP type. | Bruce Momjian | 1998-10-04 |
| | |||
* | Add prototype include to inet types. | Bruce Momjian | 1998-10-04 |
| | |||
* | Integrate new IP type from Tom Ivar Helbekkmo. | Bruce Momjian | 1998-10-03 |