| Commit message (Expand) | Author | Age | Files | Lines |
| * | Code review for log_lock_waits patch. Don't try to issue log messages from | Tom Lane | 2007-06-19 | 2 | -6/+12 |
| * | Arrange for quote_identifier() and pg_dump to not quote keywords that are | Tom Lane | 2007-06-18 | 1 | -4/+12 |
| * | Tweak the API for per-datatype typmodin functions so that they are passed | Tom Lane | 2007-06-15 | 4 | -19/+26 |
| * | Implement a chunking protocol for writes to the syslogger pipe, with messages | Andrew Dunstan | 2007-06-14 | 1 | -1/+49 |
| * | Minor comment fixes. | Tom Lane | 2007-06-12 | 1 | -3/+4 |
| * | Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsql | Tom Lane | 2007-06-11 | 2 | -4/+11 |
| * | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | 3 | -3/+26 |
| * | Teach heapam code to know the difference between a real seqscan and the | Tom Lane | 2007-06-09 | 3 | -11/+8 |
| * | Arrange for large sequential scans to synchronize with each other, so that | Tom Lane | 2007-06-08 | 4 | -12/+28 |
| * | Rework temp_tablespaces patch so that temp tablespaces are assigned separately | Tom Lane | 2007-06-07 | 5 | -13/+15 |
| * | Fix up text concatenation so that it accepts all the reasonable cases that | Tom Lane | 2007-06-06 | 6 | -14/+32 |
| * | Downgrade implicit casts to text to be assignment-only, except for the ones | Tom Lane | 2007-06-05 | 11 | -275/+112 |
| * | The session_replication_role actually can be changed at will during | Jan Wieck | 2007-06-05 | 1 | -2/+1 |
| * | Create a GUC parameter temp_tablespaces that allows selection of the | Tom Lane | 2007-06-03 | 6 | -12/+17 |
| * | Allow leading and trailing whitespace in the input to the boolean | Neil Conway | 2007-06-01 | 4 | -5/+15 |
| * | Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backends | Tom Lane | 2007-06-01 | 1 | -2/+2 |
| * | Buy back some of the cycles spent in more-expensive hash functions by | Tom Lane | 2007-06-01 | 1 | -1/+3 |
| * | Fix several hash functions that were taking chintzy shortcuts instead of | Tom Lane | 2007-06-01 | 2 | -3/+4 |
| * | Change build_index_pathkeys() so that the expressions it builds to represent | Tom Lane | 2007-05-31 | 1 | -5/+7 |
| * | Make large sequential scans and VACUUMs work in a limited-size "ring" of | Tom Lane | 2007-05-30 | 8 | -19/+51 |
| * | Fix trivial misspelling in comment. | Tom Lane | 2007-05-30 | 1 | -2/+2 |
| * | Fix a bug in input processing for the "interval" type. Previously, | Neil Conway | 2007-05-29 | 1 | -11/+15 |
| * | Ooops, I was too busy worrying about getting the transactional infrastructure | Tom Lane | 2007-05-27 | 1 | -1/+2 |
| * | pgstat's on-proc-exit hook has to execute after the last transaction commit | Tom Lane | 2007-05-27 | 1 | -1/+3 |
| * | Fix up pgstats counting of live and dead tuples to recognize that committed | Tom Lane | 2007-05-27 | 5 | -98/+140 |
| * | Create hooks to let a loadable plugin monitor (or even replace) the planner | Tom Lane | 2007-05-25 | 3 | -5/+33 |
| * | Repair planner bug introduced in 8.2 by ability to rearrange outer joins: | Tom Lane | 2007-05-22 | 1 | -1/+8 |
| * | Fix best_inner_indexscan to return both the cheapest-total-cost and | Tom Lane | 2007-05-22 | 2 | -9/+11 |
| * | Teach tuplestore.c to throw away data before the "mark" point when the caller | Tom Lane | 2007-05-21 | 3 | -5/+9 |
| * | XPath fixes: | Peter Eisentraut | 2007-05-21 | 3 | -7/+7 |
| * | To support external compression of archived WAL data, add a flag bit to | Tom Lane | 2007-05-20 | 3 | -6/+15 |
| * | Have CLUSTER advance the table's relfrozenxid. The new frozen point is the | Alvaro Herrera | 2007-05-18 | 1 | -2/+2 |
| * | Temporary fix for the problem that pg_stat_activity, inet_client_addr(), | Tom Lane | 2007-05-17 | 1 | -1/+2 |
| * | Fix parameter recalculation for Limit nodes: during a ReScan call we must | Tom Lane | 2007-05-17 | 1 | -1/+2 |
| * | Move the tuple freezing point in CLUSTER to a point further back in the past, | Alvaro Herrera | 2007-05-17 | 2 | -5/+6 |
| * | Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, to | Alvaro Herrera | 2007-05-16 | 1 | -2/+2 |
| * | Update comments for PG_DETOAST_PACKED and VARDATA_ANY on a structures | Bruce Momjian | 2007-05-15 | 2 | -2/+16 |
| * | Fix the problem that creating a user-defined type named _foo, followed by one | Tom Lane | 2007-05-12 | 1 | -3/+6 |
| * | Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINT | Tom Lane | 2007-05-11 | 1 | -1/+5 |
| * | Support arrays of composite types, including the rowtypes of regular tables | Tom Lane | 2007-05-11 | 5 | -176/+191 |
| * | Reserve some pg_statistic "kind" codes for use by the ESRI ST_Geometry | Tom Lane | 2007-05-08 | 1 | -2/+4 |
| * | Add a hash function for "numeric". Mark the equality operator for | Neil Conway | 2007-05-08 | 8 | -10/+18 |
| * | Add a line to the EXPLAIN ANALYZE output for a Sort node, showing the | Tom Lane | 2007-05-04 | 1 | -1/+3 |
| * | tas() support for Renesas' M32R processor. Kazuhiro Inaoka | Tom Lane | 2007-05-04 | 2 | -1/+19 |
| * | A few fixups in error handling: mark pg_re_throw() as noreturn for gcc, | Tom Lane | 2007-05-04 | 2 | -5/+15 |
| * | Teach tuplesort.c about "top N" sorting, in which only the first N tuples | Tom Lane | 2007-05-04 | 4 | -7/+14 |
| * | Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetching | Tom Lane | 2007-05-03 | 1 | -3/+5 |
| * | During WAL recovery, when reading a page that we intend to overwrite completely | Tom Lane | 2007-05-02 | 1 | -1/+2 |
| * | Fix oversight in PG_RE_THROW processing: it's entirely possible that there | Tom Lane | 2007-05-02 | 1 | -2/+3 |
| * | Change the timestamps recorded in transaction commit/abort xlog records | Tom Lane | 2007-04-30 | 3 | -6/+8 |