summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2009-12-29Add an index on pg_inherits.inhparent, and use it to avoid seqscans inTom Lane
2009-12-29Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane
2009-12-27Add backend and pg_dump code to allow preservation of pg_enum oids, forBruce Momjian
2009-12-24Binary upgrade:Bruce Momjian
2009-12-23Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-19Bump catversion to reflect the fact that HS patch changed pg_procTom Lane
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-12-16Don't unblock SIGQUIT in the SIGQUIT handlerPeter Eisentraut
2009-12-16If there is no sigdelset(), define it as a macro.Peter Eisentraut
2009-12-15Python 3 support in PL/PythonPeter Eisentraut
2009-12-15Add a hook to let loadable modules get control at ProcessUtility execution,Tom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-15Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas
2009-12-14Fix a bug introduced when set-returning SQL functions were made inline-able:Tom Lane
2009-12-12Allow LDAP authentication to operate in search+bind mode, meaning itMagnus Hagander
2009-12-12Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain.Robert Haas
2009-12-11Add large object access control.Itagaki Takahiro
2009-12-11Add YAML to list of EXPLAIN formats. Greg Sabino Mullane, reviewed by Takahir...Andrew Dunstan
2009-12-09Prevent indirect security attacks via changing session-local state withinTom Lane
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-12-06Don't use a duplicate OID for aclexplode().Tom Lane
2009-12-05Speed up information schema privilege viewsPeter Eisentraut
2009-12-03Fix bug in temporary file management with subtransactions. A cursor openedHeikki Linnakangas
2009-12-01Teach the regular expression functions to do case-insensitive matching andTom Lane
2009-12-01Revert due to Tom's concerns:Bruce Momjian
2009-12-01ProcessUtility_hook:Bruce Momjian
2009-11-29Make pg_stat_activity.application_name visible to all users, rather thanTom Lane
2009-11-29Add support for anonymous code blocks (DO blocks) to PL/Perl.Tom Lane
2009-11-28Add support for an application_name parameter, which is displayed inTom Lane
2009-11-28Eliminate a lot of list-management overhead within join_search_one_levelTom Lane
2009-11-23Fix an old bug in multixact and two-phase commit. Prepared transactions canHeikki Linnakangas
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-18Add a hook to CREATE/ALTER ROLE to allow an external module to check theTom Lane
2009-11-16Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane
2009-11-15Improve planning of Materialize nodes inserted atop the inner input of aTom Lane
2009-11-14Add inheritable ACE when creating a restricted token for execution onMagnus Hagander
2009-11-13Avoid assuming that enum CreateStmtLikeOption is unsigned. Zdenek KotalaTom Lane
2009-11-12Remove pg_parse_string_token() --- not needed anymore.Tom Lane
2009-11-10Fix longstanding problems in VACUUM caused by untimely interruptionsAlvaro Herrera
2009-11-09Re-refactor the core scanner's API, in order to get out from under the problemTom Lane
2009-11-06Keep track of language's trusted flag in InlineCodeBlock. Needed to support D...Andrew Dunstan
2009-11-05Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane
2009-11-04Rename some encoding conversion modules to keep pathnames in our sourceTom Lane
2009-11-04Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane
2009-11-01Dept of second thoughts: after studying index_getnext() a bit more I realizeTom Lane
2009-11-01Fix two serious bugs introduced into hash indexes by the 8.4 patch that madeTom Lane
2009-10-31Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane
2009-10-28Fix AcquireRewriteLocks to be sure that it acquires the right lock strengthTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane