| Commit message (Expand) | Author | Age | Files | Lines |
| * | For some reason access/tupmacs.h has been #including utils/memutils.h, | Tom Lane | 2005-05-06 | 1 | -1/+2 |
| * | Completion of project to use fixed OIDs for all system catalogs and | Tom Lane | 2005-04-14 | 1 | -5/+3 |
| * | Convert index-related tuple handling routines from char 'n'/' ' to bool | Tom Lane | 2005-03-21 | 1 | -7/+7 |
| * | Revise TupleTableSlot code to avoid unnecessary construction and disassembly | Tom Lane | 2005-03-16 | 1 | -11/+4 |
| * | Fix ANALYZE to accumulate some minimal statistics for an all-null column. | Tom Lane | 2005-02-11 | 1 | -3/+25 |
| * | Change heap_modifytuple() to require a TupleDesc rather than a | Neil Conway | 2005-01-27 | 1 | -2/+2 |
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 1 | -2/+2 |
| * | There is no need for ReadBuffer() call sites to check that the returned | Neil Conway | 2004-11-14 | 1 | -3/+1 |
| * | Make heap_fetch API more consistent by having the buffer remain pinned | Tom Lane | 2004-10-26 | 1 | -8/+6 |
| * | Adjust index locking rules as per my proposal of earlier today. You | Tom Lane | 2004-09-30 | 1 | -4/+4 |
| * | Pgindent run for 8.0. | Bruce Momjian | 2004-08-29 | 1 | -77/+80 |
| * | Update copyright to 2004. | Bruce Momjian | 2004-08-29 | 1 | -2/+2 |
| * | Tweak palloc/repalloc to allow zero bytes to be requested, as per recent | Tom Lane | 2004-06-05 | 1 | -6/+5 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 1 | -7/+7 |
| * | New two-stage sampling method for ANALYZE, as per discussions a few weeks | Tom Lane | 2004-05-23 | 1 | -163/+226 |
| * | Get rid of rd_nblocks field in relcache entries. Turns out this was | Tom Lane | 2004-05-08 | 1 | -9/+10 |
| * | First steps towards statistics on expressional (nee functional) indexes. | Tom Lane | 2004-02-15 | 1 | -16/+323 |
| * | After further thought about support for gathering stats on functional | Tom Lane | 2004-02-13 | 1 | -40/+61 |
| * | Add hooks for type-specific calculation of ANALYZE statistics. Idea and | Tom Lane | 2004-02-12 | 1 | -334/+341 |
| * | Centralize implementation of delay code by creating a pg_usleep() | Tom Lane | 2004-02-10 | 1 | -5/+5 |
| * | Code cleanup, mostly in the smgr: | Neil Conway | 2004-01-06 | 1 | -3/+4 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 1 | -1/+1 |
| * | Simplify loop test to avoid bug in AIX compiler, per Andreas. | Tom Lane | 2003-10-18 | 1 | -2/+2 |
| * | Message editing: remove gratuitous variations in message wording, standardize | Peter Eisentraut | 2003-09-25 | 1 | -3/+3 |
| * | Message in the other exit from acquire_sample_rows(), as per update | Tom Lane | 2003-09-11 | 1 | -3/+9 |
| * | Try to make recently-added analyze log message look something like | Tom Lane | 2003-09-11 | 1 | -3/+5 |
| * | Attached is a (very small) patch to make analyze display some | Bruce Momjian | 2003-08-26 | 1 | -1/+7 |
| * | Create a 'type cache' that keeps track of the data needed for any particular | Tom Lane | 2003-08-17 | 1 | -11/+4 |
| * | Update copyrights to 2003. | Bruce Momjian | 2003-08-04 | 1 | -2/+2 |
| * | pgindent run. | Bruce Momjian | 2003-08-04 | 1 | -4/+4 |
| * | Another round of error message editing, covering backend/commands/. | Tom Lane | 2003-07-20 | 1 | -11/+13 |
| * | First batch of object rename commands. | Peter Eisentraut | 2003-06-27 | 1 | -2/+2 |
| * | Make debug_ GUC varables output DEBUG1 rather than LOG, and mention in | Bruce Momjian | 2003-05-27 | 1 | -2/+2 |
| * | Make [VACUUM] ANALYZE safe on zero-column tables. | Tom Lane | 2003-04-25 | 1 | -2/+3 |
| * | Instead of storing pg_statistic stavalues entries as text strings, store | Tom Lane | 2003-03-23 | 1 | -28/+8 |
| * | Tighten selection of equality and ordering operators for grouping | Tom Lane | 2002-11-29 | 1 | -9/+3 |
| * | Add new palloc0 call as merge of palloc and MemSet(0). | Bruce Momjian | 2002-11-13 | 1 | -3/+2 |
| * | Back out use of palloc0 in place if palloc/MemSet. Seems constant len | Bruce Momjian | 2002-11-11 | 1 | -2/+3 |
| * | Merge palloc()/MemSet(0) calls into a single palloc0() call. | Bruce Momjian | 2002-11-10 | 1 | -3/+2 |
| * | Disallow VACUUM, ANALYZE, TRUNCATE on temp tables belonging to other | Tom Lane | 2002-09-23 | 1 | -1/+15 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -14/+22 |
| * | Increase WIDTH_THRESHOLD from 256 to 1K. This addresses recent observation | Tom Lane | 2002-08-26 | 1 | -2/+2 |
| * | Modify array operations to include array's element type OID in the | Tom Lane | 2002-08-26 | 1 | -3/+5 |
| * | The cstring datatype can now be copied, passed around, etc. The typlen | Tom Lane | 2002-08-24 | 1 | -5/+19 |
| * | Now that we allow ANALYZE to run inside a transaction block, the locks | Tom Lane | 2002-08-11 | 1 | -10/+13 |
| * | Restructure system-catalog index updating logic. Instead of having | Tom Lane | 2002-08-05 | 1 | -7/+3 |
| * | ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne, | Tom Lane | 2002-08-02 | 1 | -16/+11 |
| * | Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 in | Tom Lane | 2002-07-31 | 1 | -4/+13 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Fix up memory leakage created by recent changes. | Tom Lane | 2002-06-15 | 1 | -12/+21 |