| Commit message (Expand) | Author | Age | Files | Lines |
* | Support for Sun Studio compiler on Linux | Peter Eisentraut | 2008-10-29 | 1 | -3/+3 |
* | Unicode escapes in strings and identifiers | Peter Eisentraut | 2008-10-29 | 1 | -1/+2 |
* | Be more tense about not creating tuplestores with randomAccess = true unless | Tom Lane | 2008-10-29 | 2 | -4/+8 |
* | Extend ExecMakeFunctionResult() to support set-returning functions that return | Tom Lane | 2008-10-28 | 3 | -17/+28 |
* | Arrange to squeeze out the MINIMAL_TUPLE_PADDING in the tuple representation | Tom Lane | 2008-10-28 | 1 | -1/+7 |
* | Remove support for (insecure) crypt authentication. | Magnus Hagander | 2008-10-28 | 3 | -6/+4 |
* | Install a more robust solution for the problem of infinite error-processing | Tom Lane | 2008-10-27 | 1 | -1/+2 |
* | Reduce the memory footprint of large pending-trigger-event lists, as per my | Tom Lane | 2008-10-24 | 1 | -5/+3 |
* | Remove useless ps_OuterTupleSlot field from PlanState. I suppose this was | Tom Lane | 2008-10-23 | 1 | -5/+4 |
* | * make pg_hba authoption be a set of 0 or more name=value pairs | Magnus Hagander | 2008-10-23 | 1 | -11/+14 |
* | Dept of better ideas: refrain from creating the planner's placeholder_list | Tom Lane | 2008-10-22 | 1 | -1/+4 |
* | Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't | Teodor Sigaev | 2008-10-22 | 1 | -2/+3 |
* | Add a concept of "placeholder" variables to the planner. These are variables | Tom Lane | 2008-10-21 | 4 | -8/+91 |
* | Rework subtransaction commit protocol for hot standby. | Alvaro Herrera | 2008-10-20 | 2 | -9/+7 |
* | Remove mark/restore support in GIN and GiST indexes. | Teodor Sigaev | 2008-10-20 | 2 | -20/+2 |
* | Remove useless mark/restore support in hash index AM, per discussion. | Tom Lane | 2008-10-17 | 1 | -6/+4 |
* | Add a new column to pg_am to specify whether an index AM supports backward | Tom Lane | 2008-10-17 | 2 | -29/+31 |
* | Improve comments about RelOptInfo.reltargetlist. | Tom Lane | 2008-10-17 | 1 | -5/+7 |
* | Improve headeline generation. Now headline can contain | Teodor Sigaev | 2008-10-17 | 1 | -1/+3 |
* | During repeated rescan of GiST index it's possible that scan key | Teodor Sigaev | 2008-10-17 | 1 | -1/+2 |
* | Extend the date type to support infinity and -infinity, analogously to | Tom Lane | 2008-10-14 | 3 | -4/+21 |
* | Implement comparison of generic records (composite types), and invent a | Tom Lane | 2008-10-13 | 9 | -11/+57 |
* | Un-break non-NLS builds. | Tom Lane | 2008-10-09 | 1 | -2/+3 |
* | Fix two flaws in comments I just introduced, pointed out by Tom. | Alvaro Herrera | 2008-10-09 | 1 | -3/+3 |
* | Improve the recently-added code for inlining set-returning functions so that | Tom Lane | 2008-10-09 | 1 | -2/+3 |
* | Improve translatability of error messages for external modules by tweaking | Alvaro Herrera | 2008-10-09 | 2 | -5/+19 |
* | Modify the parser's error reporting to include a specific hint for the case | Tom Lane | 2008-10-08 | 2 | -2/+8 |
* | Extend CTE patch to support recursive UNION (ie, without ALL). The | Tom Lane | 2008-10-07 | 3 | -4/+17 |
* | Fix up ruleutils.c for CTE features. The main problem was that | Tom Lane | 2008-10-06 | 1 | -3/+3 |
* | When expanding a whole-row Var into a RowExpr during ResolveNew(), attach | Tom Lane | 2008-10-06 | 2 | -3/+10 |
* | Fix GetCTEForRTE() to deal with the possibility that the RTE it's given came | Tom Lane | 2008-10-06 | 1 | -2/+3 |
* | Use fork names instead of numbers in the file names for additional | Heikki Linnakangas | 2008-10-06 | 3 | -5/+8 |
* | Add columns boot_val and reset_val to the pg_settings view, to expose | Magnus Hagander | 2008-10-06 | 2 | -4/+4 |
* | Index FSMs needs to be vacuumed as well. Report by Jeff Davis. | Heikki Linnakangas | 2008-10-06 | 1 | -3/+3 |
* | Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, as | Tom Lane | 2008-10-06 | 1 | -1/+4 |
* | Remove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse, | Peter Eisentraut | 2008-10-05 | 3 | -24/+4 |
* | Implement SQL-standard WITH clauses, including WITH RECURSIVE. | Tom Lane | 2008-10-04 | 21 | -37/+331 |
* | Add relation fork support to pg_relation_size() function. You can now pass | Heikki Linnakangas | 2008-10-03 | 4 | -16/+15 |
* | Improve tuplestore.c to support multiple concurrent read positions. | Tom Lane | 2008-10-01 | 3 | -10/+15 |
* | Forgot to bump catalog version in the commit of FSM rewrite. | Heikki Linnakangas | 2008-09-30 | 1 | -2/+2 |
* | Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, the | Heikki Linnakangas | 2008-09-30 | 8 | -145/+133 |
* | Add hooks to let plugins override the planner's lookups in pg_statistic. | Tom Lane | 2008-09-28 | 2 | -4/+21 |
* | Establish the rule that array types should have the same typdelim as their | Tom Lane | 2008-09-25 | 2 | -4/+4 |
* | Make LC_COLLATE and LC_CTYPE database-level settings. Collation and | Heikki Linnakangas | 2008-09-23 | 4 | -25/+22 |
* | Create a selectivity estimation function for the text search @@ operator. | Tom Lane | 2008-09-19 | 5 | -13/+24 |
* | Mark SessionReplicationRole as PGDLLIMPORT so it | Magnus Hagander | 2008-09-19 | 1 | -2/+2 |
* | Allow ShowBufferUsage() to report the number of reads/writes that have | Tom Lane | 2008-09-17 | 2 | -17/+4 |
* | Widen the nLocks counts in local lock tables from int to int64. This | Tom Lane | 2008-09-16 | 1 | -3/+3 |
* | Fix caching of foreign-key-checking queries so that when a replan is needed, | Tom Lane | 2008-09-15 | 2 | -2/+4 |
* | Change hash indexes to store only the hash code rather than the whole indexed | Tom Lane | 2008-09-15 | 4 | -31/+48 |