summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Support for Sun Studio compiler on LinuxPeter Eisentraut2008-10-291-3/+3
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-291-1/+2
* Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane2008-10-292-4/+8
* Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane2008-10-283-17/+28
* Arrange to squeeze out the MINIMAL_TUPLE_PADDING in the tuple representationTom Lane2008-10-281-1/+7
* Remove support for (insecure) crypt authentication.Magnus Hagander2008-10-283-6/+4
* Install a more robust solution for the problem of infinite error-processingTom Lane2008-10-271-1/+2
* Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane2008-10-241-5/+3
* Remove useless ps_OuterTupleSlot field from PlanState. I suppose this wasTom Lane2008-10-231-5/+4
* * make pg_hba authoption be a set of 0 or more name=value pairsMagnus Hagander2008-10-231-11/+14
* Dept of better ideas: refrain from creating the planner's placeholder_listTom Lane2008-10-221-1/+4
* Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev2008-10-221-2/+3
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-214-8/+91
* Rework subtransaction commit protocol for hot standby.Alvaro Herrera2008-10-202-9/+7
* Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev2008-10-202-20/+2
* Remove useless mark/restore support in hash index AM, per discussion.Tom Lane2008-10-171-6/+4
* Add a new column to pg_am to specify whether an index AM supports backwardTom Lane2008-10-172-29/+31
* Improve comments about RelOptInfo.reltargetlist.Tom Lane2008-10-171-5/+7
* Improve headeline generation. Now headline can containTeodor Sigaev2008-10-171-1/+3
* During repeated rescan of GiST index it's possible that scan keyTeodor Sigaev2008-10-171-1/+2
* Extend the date type to support infinity and -infinity, analogously toTom Lane2008-10-143-4/+21
* Implement comparison of generic records (composite types), and invent aTom Lane2008-10-139-11/+57
* Un-break non-NLS builds.Tom Lane2008-10-091-2/+3
* Fix two flaws in comments I just introduced, pointed out by Tom.Alvaro Herrera2008-10-091-3/+3
* Improve the recently-added code for inlining set-returning functions so thatTom Lane2008-10-091-2/+3
* Improve translatability of error messages for external modules by tweakingAlvaro Herrera2008-10-092-5/+19
* Modify the parser's error reporting to include a specific hint for the caseTom Lane2008-10-082-2/+8
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-073-4/+17
* Fix up ruleutils.c for CTE features. The main problem was thatTom Lane2008-10-061-3/+3
* When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane2008-10-062-3/+10
* Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane2008-10-061-2/+3
* Use fork names instead of numbers in the file names for additionalHeikki Linnakangas2008-10-063-5/+8
* Add columns boot_val and reset_val to the pg_settings view, to exposeMagnus Hagander2008-10-062-4/+4
* Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas2008-10-061-3/+3
* Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane2008-10-061-1/+4
* Remove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse,Peter Eisentraut2008-10-053-24/+4
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-0421-37/+331
* Add relation fork support to pg_relation_size() function. You can now passHeikki Linnakangas2008-10-034-16/+15
* Improve tuplestore.c to support multiple concurrent read positions.Tom Lane2008-10-013-10/+15
* Forgot to bump catalog version in the commit of FSM rewrite.Heikki Linnakangas2008-09-301-2/+2
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-308-145/+133
* Add hooks to let plugins override the planner's lookups in pg_statistic.Tom Lane2008-09-282-4/+21
* Establish the rule that array types should have the same typdelim as theirTom Lane2008-09-252-4/+4
* Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas2008-09-234-25/+22
* Create a selectivity estimation function for the text search @@ operator.Tom Lane2008-09-195-13/+24
* Mark SessionReplicationRole as PGDLLIMPORT so itMagnus Hagander2008-09-191-2/+2
* Allow ShowBufferUsage() to report the number of reads/writes that haveTom Lane2008-09-172-17/+4
* Widen the nLocks counts in local lock tables from int to int64. ThisTom Lane2008-09-161-3/+3
* Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane2008-09-152-2/+4
* Change hash indexes to store only the hash code rather than the whole indexedTom Lane2008-09-154-31/+48