summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* 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
* Parse pg_hba.conf in postmaster, instead of once in each backend forMagnus Hagander2008-09-152-5/+26
* Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane2008-09-101-2/+2
* Add "source file" and "source line" information to each GUC variable.Alvaro Herrera2008-09-103-5/+7
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-096-9/+41
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-083-7/+8
* Implement a psql command "\ef" to edit the definition of a function.Tom Lane2008-09-063-4/+7
* If a loadable module has wrong values in its magic block, spell outTom Lane2008-09-031-1/+4
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-0110-26/+47
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-302-18/+32
* In GCC-based builds, use a better newNode() macro that relies on GCC-specificTom Lane2008-08-291-1/+20
* Remove all traces that suggest that a non-Bison yacc might be supported, andPeter Eisentraut2008-08-291-2/+2
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-287-31/+69
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-253-42/+37
* Get rid of the last remaining uses of var_is_rel(), to wit some debuggingTom Lane2008-08-251-1/+2
* Convert remaining builtin set-returning functions to use OUT parameters, makingMagnus Hagander2008-08-252-8/+8
* Add missing descriptions for aggregates, functions and conversions.Bruce Momjian2008-08-232-3/+114
* Fix possible duplicate tuples while GiST scan. Now page is processedTeodor Sigaev2008-08-231-1/+14
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-227-14/+47
* Improve sublink pullup code to handle ANY/EXISTS sublinks that are at topTom Lane2008-08-172-7/+11
* Clean up the loose ends in selectivity estimation left by my patch for semiTom Lane2008-08-165-26/+29
* Make the temporary directory for pgstat files configurable by the GUCMagnus Hagander2008-08-151-1/+3
* Fix pull_up_simple_union_all to copy all rtable entries from child subquery toHeikki Linnakangas2008-08-141-1/+3
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-1411-89/+141
* Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera2008-08-131-2/+2
* Relation forks patch requires a catversion bump due to changes in the formatHeikki Linnakangas2008-08-111-2/+2
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-1111-60/+110
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-073-7/+9
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-073-13/+32
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-074-9/+18
* Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander2008-08-051-2/+2
* Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane2008-08-051-3/+4
* Improve CREATE/DROP/RENAME DATABASE so that when failing because the sourceTom Lane2008-08-041-2/+3
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-029-77/+83
* Move ident authentication code into auth.c along with the other authenciationMagnus Hagander2008-08-011-2/+4
* Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane2008-07-312-11/+13
* Flip the default typispreferred setting from true to false. This affectsTom Lane2008-07-302-89/+89
* Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane2008-07-307-228/+254
* As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane2008-07-262-7/+2
* Use guc.c's parse_int() instead of pg_atoi() to parse fillfactor inTom Lane2008-07-231-1/+4
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-182-6/+5
* Provide a function hook to let plug-ins get control around ExecutorRun.Tom Lane2008-07-181-1/+10
* Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane2008-07-184-6/+14
* Add a "provariadic" column to pg_proc to eliminate the remarkably expensiveTom Lane2008-07-164-2134/+2138