| Commit message (Expand) | Author | Age | Files | Lines |
* | Improve the checkpoint signaling mechanism so that the bgwriter can tell | Tom Lane | 2005-06-30 | 1 | -2/+2 |
* | Clean up the rather historically encumbered interface to now() and | Tom Lane | 2005-06-29 | 4 | -16/+15 |
* | More cleanup on roles patch. Allow admin option to be inherited through | Tom Lane | 2005-06-29 | 1 | -1/+2 |
* | Bring syntax of role-related commands into SQL compliance. To avoid | Tom Lane | 2005-06-28 | 3 | -8/+8 |
* | Replace pg_shadow and pg_group by new role-capable catalogs pg_authid | Tom Lane | 2005-06-28 | 34 | -401/+387 |
* | Concurrency for GiST | Teodor Sigaev | 2005-06-27 | 5 | -105/+136 |
* | Remove support for Kerberos V4. It seems no one is using this, it has | Neil Conway | 2005-06-27 | 5 | -15/+6 |
* | Tweak dynahash.c to not allocate so many entries at once when dealing | Tom Lane | 2005-06-26 | 1 | -3/+4 |
* | Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule | Tom Lane | 2005-06-26 | 3 | -3/+33 |
* | Code review for escape-strings patch. Sync psql and plpgsql lexers | Tom Lane | 2005-06-26 | 1 | -1/+2 |
* | Add E'' syntax so eventually normal strings can treat backslashes | Bruce Momjian | 2005-06-26 | 2 | -6/+7 |
* | Fix a couple of items that should be declared Oid not int. Purely | Tom Lane | 2005-06-25 | 1 | -2/+2 |
* | Extend r-tree operator classes to handle Y-direction tests equivalent | Tom Lane | 2005-06-24 | 7 | -35/+83 |
* | Fix rtree and contrib/rtree_gist search behavior for the 1-D box and | Tom Lane | 2005-06-24 | 2 | -2/+4 |
* | Make REINDEX DATABASE do what one would expect, namely reindex all indexes | Tom Lane | 2005-06-22 | 2 | -7/+8 |
* | Fix the mechanism for reporting the original table OID and column number | Tom Lane | 2005-06-22 | 2 | -2/+5 |
* | Cause initdb to create a third standard database "postgres", which | Tom Lane | 2005-06-21 | 1 | -2/+2 |
* | Avoid WAL-logging individual tuple insertions during CREATE TABLE AS | Tom Lane | 2005-06-20 | 3 | -5/+8 |
* | fix founded hole in recovery after crash, add vacuum_delay_point() | Teodor Sigaev | 2005-06-20 | 1 | -9/+5 |
* | 1. full functional WAL for GiST | Teodor Sigaev | 2005-06-20 | 5 | -25/+81 |
* | Simplify uses of readdir() by creating a function ReadDir() that | Tom Lane | 2005-06-19 | 1 | -1/+2 |
* | Arrange to fsync two-phase-commit state files only during checkpoints; | Tom Lane | 2005-06-19 | 1 | -3/+4 |
* | When using C-string lookup keys in a dynahash.c hash table, use strncpy() | Tom Lane | 2005-06-18 | 1 | -6/+20 |
* | Add a time-of-preparation column to the pg_prepared_xacts view, per an | Tom Lane | 2005-06-18 | 2 | -6/+8 |
* | Two-phase commit. Original patch by Heikki Linnakangas, with additional | Tom Lane | 2005-06-17 | 19 | -48/+203 |
* | Add fsync() define for Win32 to cover cases other than wal_sync_method | Bruce Momjian | 2005-06-16 | 1 | -1/+6 |
* | Update catalog version for recent function additions. | Bruce Momjian | 2005-06-15 | 1 | -2/+2 |
* | Change the implementation of hash join to attempt to avoid unnecessary | Neil Conway | 2005-06-15 | 1 | -1/+2 |
* | This patch makes it possible to use the full set of timezones when doing | Bruce Momjian | 2005-06-15 | 2 | -3/+7 |
* | Support 3 and 4-byte unicode characters. | Bruce Momjian | 2005-06-15 | 1 | -1/+3 |
* | Simplify shared-memory lock data structures as per recent discussion: | Tom Lane | 2005-06-14 | 2 | -25/+35 |
* | Add pg_postmaster_start_time() function. | Bruce Momjian | 2005-06-14 | 2 | -2/+10 |
* | Add GUC krb_server_hostname so the server hostname can be specified as | Bruce Momjian | 2005-06-14 | 1 | -1/+2 |
* | WAL for GiST. It work for online backup and so on, but on | Teodor Sigaev | 2005-06-14 | 1 | -4/+150 |
* | Change the planner to allow indexscan qualification clauses to use | Tom Lane | 2005-06-13 | 4 | -25/+27 |
* | Adjust lo_open() so that specifying INV_READ without INV_WRITE creates | Tom Lane | 2005-06-13 | 4 | -7/+15 |
* | Separate predicate-testing code out of indxpath.c, making it a module | Tom Lane | 2005-06-10 | 2 | -2/+24 |
* | Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM. | Neil Conway | 2005-06-10 | 1 | -1/+2 |
* | Quick hack to allow the outer query's tuple_fraction to be passed down | Tom Lane | 2005-06-10 | 1 | -1/+3 |
* | If a LIMIT is applied to a UNION ALL query, plan each UNION arm as | Tom Lane | 2005-06-10 | 1 | -2/+3 |
* | Avoid bare 'struct Node;' declaration --- provokes annoying warnings | Tom Lane | 2005-06-09 | 1 | -6/+6 |
* | Please find attached a patch (diff -c against cvs HEAD) to add a | Bruce Momjian | 2005-06-09 | 1 | -1/+3 |
* | Simplify the planner's join clause management by storing join clauses | Tom Lane | 2005-06-09 | 4 | -45/+28 |
* | Marginal hack to avoid spending a lot of time in find_join_rel during | Tom Lane | 2005-06-08 | 3 | -3/+18 |
* | Remove grammar productions for prefix and postfix % and ^ operators, | Tom Lane | 2005-06-08 | 1 | -3/+1 |
* | Change WAL-logging scheme for multixacts to be more like regular | Tom Lane | 2005-06-08 | 5 | -11/+43 |
* | Add a function lastval(), which returns the value returned by the | Neil Conway | 2005-06-07 | 3 | -4/+7 |
* | Modify XLogInsert API to make callers specify whether pages to be backed | Tom Lane | 2005-06-06 | 1 | -11/+29 |
* | Remove the mostly-stubbed-out-anyway support routines for WAL UNDO. | Tom Lane | 2005-06-06 | 15 | -31/+19 |
* | Nab some low-hanging fruit: replace the planner's base_rel_list and | Tom Lane | 2005-06-06 | 1 | -7/+14 |