aboutsummaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAge
* Create a selectivity estimation function for the text search @@ operator.Tom Lane2008-09-19
* Mark SessionReplicationRole as PGDLLIMPORT so itMagnus Hagander2008-09-19
* Allow ShowBufferUsage() to report the number of reads/writes that haveTom Lane2008-09-17
* Widen the nLocks counts in local lock tables from int to int64. ThisTom Lane2008-09-16
* Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane2008-09-15
* Change hash indexes to store only the hash code rather than the whole indexedTom Lane2008-09-15
* Parse pg_hba.conf in postmaster, instead of once in each backend forMagnus Hagander2008-09-15
* Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane2008-09-10
* Add "source file" and "source line" information to each GUC variable.Alvaro Herrera2008-09-10
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-09
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-08
* Implement a psql command "\ef" to edit the definition of a function.Tom Lane2008-09-06
* If a loadable module has wrong values in its magic block, spell outTom Lane2008-09-03
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-01
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-30
* In GCC-based builds, use a better newNode() macro that relies on GCC-specificTom Lane2008-08-29
* Remove all traces that suggest that a non-Bison yacc might be supported, andPeter Eisentraut2008-08-29
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Get rid of the last remaining uses of var_is_rel(), to wit some debuggingTom Lane2008-08-25
* Convert remaining builtin set-returning functions to use OUT parameters, makingMagnus Hagander2008-08-25
* Add missing descriptions for aggregates, functions and conversions.Bruce Momjian2008-08-23
* Fix possible duplicate tuples while GiST scan. Now page is processedTeodor Sigaev2008-08-23
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-22
* Improve sublink pullup code to handle ANY/EXISTS sublinks that are at topTom Lane2008-08-17
* Clean up the loose ends in selectivity estimation left by my patch for semiTom Lane2008-08-16
* Make the temporary directory for pgstat files configurable by the GUCMagnus Hagander2008-08-15
* Fix pull_up_simple_union_all to copy all rtable entries from child subquery toHeikki Linnakangas2008-08-14
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-14
* Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera2008-08-13
* Relation forks patch requires a catversion bump due to changes in the formatHeikki Linnakangas2008-08-11
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-11
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-07
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-07
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-07
* Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander2008-08-05
* Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane2008-08-05
* Improve CREATE/DROP/RENAME DATABASE so that when failing because the sourceTom Lane2008-08-04
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Move ident authentication code into auth.c along with the other authenciationMagnus Hagander2008-08-01
* Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane2008-07-31
* Flip the default typispreferred setting from true to false. This affectsTom Lane2008-07-30
* Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane2008-07-30
* As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane2008-07-26
* Use guc.c's parse_int() instead of pg_atoi() to parse fillfactor inTom Lane2008-07-23
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-18
* Provide a function hook to let plug-ins get control around ExecutorRun.Tom Lane2008-07-18
* Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane2008-07-18
* Add a "provariadic" column to pg_proc to eliminate the remarkably expensiveTom Lane2008-07-16
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-16