| Commit message (Expand) | Author | Age | Files | Lines |
* | Support window functions a la SQL:2008. | Tom Lane | 2008-12-28 | 52 | -251/+4704 |
* | Make a couple of small changes to the tuplestore API, for the benefit of the | Tom Lane | 2008-12-27 | 2 | -26/+62 |
* | Change the name of dtrace wal tracepoints: | Bruce Momjian | 2008-12-24 | 2 | -6/+6 |
* | Add missing semicolon, per buildfarm results. Martin Pihlak | Tom Lane | 2008-12-20 | 1 | -2/+2 |
* | Fix various confusions of pointers and OIDs, unsafe assumptions about nulls, | Tom Lane | 2008-12-20 | 1 | -17/+32 |
* | Don't use OidIsValid to check the return value of transformGenericOptions, | Heikki Linnakangas | 2008-12-20 | 1 | -10/+10 |
* | Add a new column proiswindow to pg_proc. It doesn't actually do anything | Tom Lane | 2008-12-19 | 1 | -1/+3 |
* | SQL/MED catalog manipulation facilities | Peter Eisentraut | 2008-12-19 | 24 | -42/+3728 |
* | When we added the ability to have zero-element ARRAY[] constructs by adding an | Tom Lane | 2008-12-19 | 1 | -1/+9 |
* | Fix oversight in my recent patch to allow ExecMakeFunctionResult to handle | Tom Lane | 2008-12-18 | 1 | -18/+18 |
* | Code review for function default parameters patch. Fix numerous problems as | Tom Lane | 2008-12-18 | 11 | -298/+515 |
* | Don't reset pg_class.reltuples and relpages in VACUUM, if any pages were | Heikki Linnakangas | 2008-12-17 | 5 | -56/+88 |
* | The attached patch contains a couple of fixes in the existing probes and | Bruce Momjian | 2008-12-17 | 5 | -37/+79 |
* | Make heap_update() set newtup->t_tableOid correctly, for consistency with | Tom Lane | 2008-12-16 | 1 | -1/+2 |
* | Department of second thoughts: further experimentation with CREATE OR REPLACE | Tom Lane | 2008-12-16 | 1 | -6/+12 |
* | Code review for CREATE OR REPLACE VIEW patch. Do things in a saner order to | Tom Lane | 2008-12-15 | 2 | -31/+40 |
* | Arrange for the pg_foo_is_visible and has_foo_privilege families of functions | Tom Lane | 2008-12-15 | 2 | -7/+143 |
* | Reduce the scaling factor for attstattarget to number-of-lexemes from 100 | Tom Lane | 2008-12-15 | 1 | -4/+4 |
* | Remove our dependencies on MB_CUR_MAX in favor of believing that | Tom Lane | 2008-12-15 | 1 | -10/+34 |
* | Restore enforce_generic_type_consistency's pre-8.3 behavior of allowing an | Tom Lane | 2008-12-14 | 1 | -8/+28 |
* | Replace both send and receive BIO routines in the SSL code with our own, | Magnus Hagander | 2008-12-14 | 1 | -15/+41 |
* | Increase the default value of default_statistics_target from 10 to 100, | Tom Lane | 2008-12-13 | 5 | -15/+15 |
* | Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's useless | Tom Lane | 2008-12-13 | 4 | -35/+13 |
* | Fix failure to ensure that a snapshot is available to datatype input functions | Tom Lane | 2008-12-13 | 4 | -13/+142 |
* | To reduce confusion over whether VACUUM FULL is needed for anti-wraparound | Tom Lane | 2008-12-11 | 1 | -3/+3 |
* | The macros NULL_DEV and DEVNULL were both used to work around | Peter Eisentraut | 2008-12-11 | 2 | -4/+4 |
* | Append major version number and for libraries soname major version number | Peter Eisentraut | 2008-12-11 | 2 | -4/+4 |
* | Tweak the tree descent loop in fsm_search_avail to not look at the | Tom Lane | 2008-12-10 | 1 | -12/+15 |
* | Revert SIGUSR1 multiplexing patch, per Tom's objection. | Heikki Linnakangas | 2008-12-09 | 7 | -110/+41 |
* | Provide support for multiplexing SIGUSR1 signal. The upcoming synchronous | Heikki Linnakangas | 2008-12-09 | 7 | -41/+110 |
* | Teach pgstat_vacuum_stat to not bother scanning pg_proc in the common case | Tom Lane | 2008-12-08 | 1 | -33/+38 |
* | Don't try to optimize EXISTS subqueries with empty FROM-lists: we need to | Tom Lane | 2008-12-08 | 1 | -1/+8 |
* | Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view. | Bruce Momjian | 2008-12-06 | 3 | -40/+79 |
* | MAPSIZE macro needs to use MAXALIGN(SizeOfPageHeaderData) instead of | Heikki Linnakangas | 2008-12-06 | 1 | -2/+2 |
* | Better descriptions in pg_get_keywords(), consistent with the documentation | Peter Eisentraut | 2008-12-05 | 1 | -5/+5 |
* | Default values for function arguments | Peter Eisentraut | 2008-12-04 | 11 | -40/+292 |
* | Fix a couple of snapshot management bugs in the new ResourceOwner world: | Alvaro Herrera | 2008-12-04 | 3 | -18/+73 |
* | Utilize the visibility map in autovacuum, too. There was an oversight in | Heikki Linnakangas | 2008-12-04 | 5 | -13/+12 |
* | Initialize GISTScanOpaque->qual_ok even if there is no conditions. | Teodor Sigaev | 2008-12-04 | 1 | -2/+3 |
* | Properly unregister OpenSSL callbacks when libpq is done with | Magnus Hagander | 2008-12-03 | 1 | -26/+1 |
* | Introduce visibility map. The visibility map is a bitmap with one bit per | Heikki Linnakangas | 2008-12-03 | 9 | -37/+820 |
* | Small comment fixes. | Heikki Linnakangas | 2008-12-03 | 1 | -4/+4 |
* | If pg_stop_backup() is called just after switching to a new xlog file, | Heikki Linnakangas | 2008-12-03 | 1 | -4/+10 |
* | Use PG_GETARG_TEXT_PP instead of PG_GETARG_TEXT_P in the new | Heikki Linnakangas | 2008-12-02 | 1 | -9/+9 |
* | Minor code embellishments. | Alvaro Herrera | 2008-12-02 | 1 | -50/+43 |
* | Fix an oversight in the code that makes transitive-equality deductions from | Tom Lane | 2008-12-01 | 3 | -6/+13 |
* | Modify the new to_timestamp implementation so that end-of-format-string | Heikki Linnakangas | 2008-12-01 | 1 | -2/+3 |
* | Ensure that the contents of a holdable cursor don't depend on out-of-line | Tom Lane | 2008-12-01 | 3 | -15/+137 |
* | Clean up the API for DestReceiver objects by eliminating the assumption | Tom Lane | 2008-11-30 | 10 | -66/+87 |
* | Add a "LIKE = typename" clause to CREATE TYPE for base types. This allows | Tom Lane | 2008-11-30 | 1 | -85/+166 |