| Commit message (Expand) | Author | Age | Files | Lines |
* | Make the world at least somewhat safe for zero-column tables, and | Tom Lane | 2002-09-28 | 5 | -77/+62 |
* | ARGH! | Tom Lane | 2002-09-27 | 1 | -18/+38 |
* | Use heap_formtuple not heap_addheader to construct pg_index tuples. | Tom Lane | 2002-09-27 | 1 | -46/+42 |
* | Don't mess with HEAP_XMAX_INVALID in heaptuple.c routines; there is | Tom Lane | 2002-09-27 | 1 | -10/+14 |
* | Have -d5 -d0 not affect the extra variables set with -d5. | Bruce Momjian | 2002-09-27 | 1 | -18/+21 |
* | Make postgres -d0 set server_min_messages to notice. Reset doesn't work | Bruce Momjian | 2002-09-27 | 1 | -5/+6 |
* | Ensure that before truncating CLOG, we force a checkpoint even if no | Tom Lane | 2002-09-26 | 4 | -23/+24 |
* | Fix problems with loss of tuple commit status bits during WAL redo of | Tom Lane | 2002-09-26 | 1 | -22/+24 |
* | This patch removes a use of uninitialized memory in lmgr/lock.c, by | Bruce Momjian | 2002-09-26 | 1 | -1/+2 |
* | Pass postmaster -d down to the postgres backend to trigger special -d | Bruce Momjian | 2002-09-26 | 2 | -5/+17 |
* | Allow SSL to work withouth client-side certificate infrastructure. | Bruce Momjian | 2002-09-26 | 1 | -1/+5 |
* | Remove ShutdownBufferPoolAccess exit callback, and do the work in | Tom Lane | 2002-09-25 | 6 | -34/+43 |
* | Change default privileges for languages and functions to be PUBLIC USAGE | Tom Lane | 2002-09-24 | 2 | -5/+7 |
* | Tweak conversion names to follow the established naming scheme, and | Peter Eisentraut | 2002-09-24 | 1 | -35/+35 |
* | Add missing correction of sublevelsup when pulling up a subquery. | Tom Lane | 2002-09-24 | 1 | -3/+9 |
* | Further thinking about heap_mark4update: in HeapTupleSelfUpdated case, | Tom Lane | 2002-09-23 | 2 | -2/+8 |
* | Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to other | Tom Lane | 2002-09-23 | 4 | -4/+62 |
* | Get rid of bogus use of heap_mark4update in reindex operations (cf. | Tom Lane | 2002-09-23 | 3 | -166/+129 |
* | In UpdateStats(), don't bother to update the pg_class row if it already | Tom Lane | 2002-09-22 | 1 | -54/+40 |
* | Remove commas from %type and %token lists, for compatibility with newer | Tom Lane | 2002-09-22 | 1 | -161/+161 |
* | Translation updates, some messages tweaked. | Peter Eisentraut | 2002-09-22 | 1 | -98/+440 |
* | RelationClearRelation must reset rd_targblock and update rd_nblocks | Tom Lane | 2002-09-22 | 1 | -2/+6 |
* | server_min_messages and friends should have valid values at bootup. | Tom Lane | 2002-09-22 | 1 | -4/+4 |
* | Replace pg_attribute.attisinherited with attislocal and attinhcount | Tom Lane | 2002-09-22 | 12 | -51/+121 |
* | Bring SIMILAR TO and SUBSTRING into some semblance of conformance with | Tom Lane | 2002-09-22 | 2 | -14/+141 |
* | Move most of the error checking for foreign-key constraints out of | Tom Lane | 2002-09-22 | 6 | -798/+755 |
* | Add last-ditch defense against attempts to compile datetime code with | Tom Lane | 2002-09-21 | 2 | -11/+27 |
* | Provide an upgrade strategy for dump files containing functions declared | Tom Lane | 2002-09-21 | 5 | -66/+201 |
* | Fix PPC s_lock operations to work correctly on multi-CPU machines. | Tom Lane | 2002-09-21 | 1 | -1/+6 |
* | Performance improvement for MultiRecordFreeSpace on large relations --- | Tom Lane | 2002-09-20 | 4 | -143/+169 |
* | Code review for check-domain-constraints-in-COPY patch. Do correct thing | Tom Lane | 2002-09-20 | 1 | -64/+84 |
* | Change domain patch to COERCE_IMPLICIT_CAST, per Tom. | Bruce Momjian | 2002-09-20 | 1 | -2/+2 |
* | Fix compile error from Rod's patch. | Bruce Momjian | 2002-09-20 | 1 | -3/+3 |
* | The patch fix bug described in TODO: | Bruce Momjian | 2002-09-20 | 1 | -9/+8 |
* | Tom Lane wrote: | Bruce Momjian | 2002-09-20 | 1 | -2/+2 |
* | This patch cleans up some of the code in src/util/adt/formatting.c, | Bruce Momjian | 2002-09-20 | 1 | -49/+53 |
* | This patch fixes two typos in src/backend/storage/ipc/README. | Bruce Momjian | 2002-09-20 | 1 | -3/+3 |
* | Fixed this problem and added regression tests in domain.sql. | Bruce Momjian | 2002-09-20 | 1 | -10/+72 |
* | > I'm not sure why NDirectFileRead/NDirectFileWrite are unused at the | Bruce Momjian | 2002-09-20 | 2 | -13/+6 |
* | Tweak heap.c to refuse attempts to create table columns of standalone | Tom Lane | 2002-09-19 | 5 | -52/+85 |
* | Department of second thoughts: suppressing implicit casts everywhere in | Tom Lane | 2002-09-19 | 4 | -68/+90 |
* | Extend pg_cast castimplicit column to a three-way value; this allows us | Tom Lane | 2002-09-18 | 35 | -1075/+1022 |
* | Fix bug in encoding conversion map. | Tatsuo Ishii | 2002-09-18 | 3 | -3/+3 |
* | Update Japanese README so that it reflects the changes made to the | Tatsuo Ishii | 2002-09-18 | 1 | -8/+8 |
* | Remove retest Makefile entry because it does not compile. | Bruce Momjian | 2002-09-16 | 1 | -3/+6 |
* | Fix for rare race-condition-like failure: if a backend receives SIGUSR2 | Tom Lane | 2002-09-16 | 2 | -3/+10 |
* | Cast functions can be immutable or stable. | Peter Eisentraut | 2002-09-15 | 1 | -3/+3 |
* | Update obsolete comment. | Tom Lane | 2002-09-14 | 1 | -2/+2 |
* | Cosmetic fixes from Neil Conway. | Tom Lane | 2002-09-14 | 2 | -6/+6 |
* | Shrink the pg_hba.conf and pg_ident.conf default files and move most of the | Peter Eisentraut | 2002-09-14 | 2 | -289/+78 |