summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-10-27Install a more robust solution for the problem of infinite error-processingTom Lane
2008-10-24Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane
2008-10-23Remove useless ps_OuterTupleSlot field from PlanState. I suppose this wasTom Lane
2008-10-23* make pg_hba authoption be a set of 0 or more name=value pairsMagnus Hagander
2008-10-22Dept of better ideas: refrain from creating the planner's placeholder_listTom Lane
2008-10-22Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev
2008-10-21Add a concept of "placeholder" variables to the planner. These are variablesTom Lane
2008-10-20Rework subtransaction commit protocol for hot standby.Alvaro Herrera
2008-10-20Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev
2008-10-17Remove useless mark/restore support in hash index AM, per discussion.Tom Lane
2008-10-17Add a new column to pg_am to specify whether an index AM supports backwardTom Lane
2008-10-17Improve comments about RelOptInfo.reltargetlist.Tom Lane
2008-10-17Improve headeline generation. Now headline can containTeodor Sigaev
2008-10-17During repeated rescan of GiST index it's possible that scan keyTeodor Sigaev
2008-10-14Extend the date type to support infinity and -infinity, analogously toTom Lane
2008-10-13Implement comparison of generic records (composite types), and invent aTom Lane
2008-10-09Un-break non-NLS builds.Tom Lane
2008-10-09Fix two flaws in comments I just introduced, pointed out by Tom.Alvaro Herrera
2008-10-09Improve the recently-added code for inlining set-returning functions so thatTom Lane
2008-10-09Improve translatability of error messages for external modules by tweakingAlvaro Herrera
2008-10-08Modify the parser's error reporting to include a specific hint for the caseTom Lane
2008-10-07Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane
2008-10-06Fix up ruleutils.c for CTE features. The main problem was thatTom Lane
2008-10-06When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane
2008-10-06Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane
2008-10-06Use fork names instead of numbers in the file names for additionalHeikki Linnakangas
2008-10-06Add columns boot_val and reset_val to the pg_settings view, to exposeMagnus Hagander
2008-10-06Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas
2008-10-06Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane
2008-10-05Remove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse,Peter Eisentraut
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-10-03Add relation fork support to pg_relation_size() function. You can now passHeikki Linnakangas
2008-10-01Improve tuplestore.c to support multiple concurrent read positions.Tom Lane
2008-09-30Forgot to bump catalog version in the commit of FSM rewrite.Heikki Linnakangas
2008-09-30Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas
2008-09-28Add hooks to let plugins override the planner's lookups in pg_statistic.Tom Lane
2008-09-25Establish the rule that array types should have the same typdelim as theirTom Lane
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-19Create a selectivity estimation function for the text search @@ operator.Tom Lane
2008-09-19Mark SessionReplicationRole as PGDLLIMPORT so itMagnus Hagander
2008-09-17Allow ShowBufferUsage() to report the number of reads/writes that haveTom Lane
2008-09-16Widen the nLocks counts in local lock tables from int to int64. ThisTom Lane
2008-09-15Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane
2008-09-15Change hash indexes to store only the hash code rather than the whole indexedTom Lane
2008-09-15Parse pg_hba.conf in postmaster, instead of once in each backend forMagnus Hagander
2008-09-10Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane
2008-09-10Add "source file" and "source line" information to each GUC variable.Alvaro Herrera
2008-09-09Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane
2008-09-08Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane
2008-09-06Implement a psql command "\ef" to edit the definition of a function.Tom Lane