summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2008-08-15Make the temporary directory for pgstat files configurable by the GUCMagnus Hagander
2008-08-14Fix pull_up_simple_union_all to copy all rtable entries from child subquery toHeikki Linnakangas
2008-08-14Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane
2008-08-13Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera
2008-08-11Relation forks patch requires a catversion bump due to changes in the formatHeikki Linnakangas
2008-08-11Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas
2008-08-10Fix corner-case bug introduced with HOT: if REINDEX TABLE pg_class (or aTom Lane
2008-08-08Install checks in executor startup to ensure that the tuples produced by anTom Lane
2008-08-07Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane
2008-08-07Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane
2008-08-07Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane
2008-08-05Do not allow Unique nodes to be scanned backwards. The code claimed that itTom Lane
2008-08-05Department of second thoughts: fix newly-added code in planner.c to make realTom Lane
2008-08-05Add an ORDER BY to one more SELECT DISTINCT test case, per buildfarm results.Tom Lane
2008-08-05In ReadOrZeroBuffer (and related entry points), don't bother to callTom Lane
2008-08-05Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander
2008-08-05Fix some message style guideline violations in pg_regress, as well asTom Lane
2008-08-05Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane
2008-08-04Improve CREATE/DROP/RENAME DATABASE so that when failing because the sourceTom Lane
2008-08-03Make GROUP BY work properly for datatypes that only support hashing and notTom Lane
2008-08-03Tighten up the sanity checks in TypeCreate(): pass-by-value types must haveTom Lane
2008-08-03Fix copy-and-pasteo that's causing pg_regress to lie about which file it can'tTom Lane
2008-08-02Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane
2008-08-01Add a few more DTrace probes to the backend.Alvaro Herrera
2008-08-01Rearrange the code in auth.c so that all functions for a single authenticationMagnus Hagander
2008-08-01Move ident authentication code into auth.c along with the other authenciationMagnus Hagander
2008-07-31Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane
2008-07-31Require superuser privilege to create base types (but not composites, enums,Tom Lane
2008-07-30Allow I/O conversion casts to be applied to or from any type that is a memberTom Lane
2008-07-30Flip the default typispreferred setting from true to false. This affectsTom Lane
2008-07-30Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane
2008-07-26As noted by Andrew Gierth, there's really no need any more to force a junkTom Lane
2008-07-24Fix parsing of LDAP URLs so it doesn't reject spaces in the "suffix" part.Tom Lane
2008-07-24Remove some redundant tests and improve comments in next_token().Tom Lane
2008-07-23Ratchet up patch to improve autovacuum wraparound messages.Alvaro Herrera
2008-07-23Use guc.c's parse_int() instead of pg_atoi() to parse fillfactor inTom Lane
2008-07-21Publish more openly the fact that autovacuum is working for wraparoundAlvaro Herrera
2008-07-21Add comment about the two different query strings that ExecuteQuery()Tom Lane
2008-07-21Code review for array_fill patch: fix inadequate check for array size overflowTom Lane
2008-07-20Add a pg_dump option --lock-wait-timeout to allow failing the dump if unableTom Lane
2008-07-20Revert patch so .psqlrc can suppress startup banner:Bruce Momjian
2008-07-19Avoid substituting NAMEDATALEN, FLOAT4PASSBYVAL, and FLOAT8PASSBYVAL intoTom Lane
2008-07-18Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane
2008-07-18Provide a function hook to let plug-ins get control around ExecutorRun.Tom Lane
2008-07-18In psql, run .psqlrc _after_ printing warnings and banner.Bruce Momjian
2008-07-18Fix a race condition that I introduced into sinvaladt.c during the recentTom Lane
2008-07-18Suppress compiler warning, and not incidentally make the code moreTom Lane
2008-07-18Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane
2008-07-17Add MSVC++ debug libraries to .cvsignore.Alvaro Herrera
2008-07-17Avoid crashing when a table is deleted while we're on the process of checkingAlvaro Herrera