summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2010-01-01Support "x IS NOT NULL" clauses as indexscan conditions. This turns outTom Lane
2010-01-01Silence compiler warning on 64-bit windows buildMagnus Hagander
2009-12-31Redefine Datum as uintptr_t, instead of unsigned long.Tom Lane
2009-12-30Reject invalid input in int2vectorin.Robert Haas
2009-12-29Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane
2009-12-29Previous fix for temporary file management broke returning a set fromHeikki Linnakangas
2009-12-27Remove a couple of unnecessary calls of CreateCacheMemoryContext. TheseTom Lane
2009-12-21More cleanups for the recent large object permissions patch.Robert Haas
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-12-19binary migration: pg_migratorBruce Momjian
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-12Fix integer-to-bit-string conversions to handle the first fractional byteTom Lane
2009-12-11Add large object access control.Itagaki Takahiro
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-05Speed up information schema privilege viewsPeter Eisentraut
2009-12-03Fix bug in temporary file management with subtransactions. A cursor openedHeikki Linnakangas
2009-12-02Mark application_name as GUC_REPORT so that the value will be reported backTom Lane
2009-11-29Make pg_stat_activity.application_name visible to all users, rather thanTom Lane
2009-11-28Add support for an application_name parameter, which is displayed inTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-12The recent patch to log changes in postgresql.conf settings dumped coreTom Lane
2009-11-12Make initdb behave sanely when the selected locale has codeset "US-ASCII".Tom Lane
2009-11-10interval_abs():Bruce Momjian
2009-11-05Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane
2009-11-05Allow binary-coercible cases in ri_HashCompareOp; there are some such casesTom 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-10-28Un-break EXPLAIN for Append plans. I messed this up a few days ago whileTom 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
2009-10-26Fix range check in date_recv that tried to limit accepted values to onlyHeikki Linnakangas
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-21Remove regex_flavor GUC, so that regular expressions are always "advanced"Tom Lane
2009-10-21Remove add_missing_from GUC and associated parser support for "implicit RTEs".Tom Lane
2009-10-17Fix typo in previous release as reported by Itagaki Takahiro, but missedMagnus Hagander
2009-10-17Write to the Windows eventlog in UTF16, converting the message encodingMagnus Hagander
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-13Fix ts_stat's failure on empty tsvector.Tom Lane
2009-10-13Add new PGC_S_DATABASE_USER enum value to several places missed by my patchAlvaro Herrera
2009-10-10Improve similar_escape() in two different ways:Tom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-10-09Use pg_get_triggerdef in pg_dumpPeter Eisentraut
2009-10-08Fix off-by-one bug in bitncmp(): When comparing a number of bits divisible byHeikki Linnakangas
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-10-07Make it possibly to specify GUC params per user and per database.Alvaro Herrera
2009-10-07Fix snapshot management, take two.Alvaro Herrera
2009-10-05Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane
2009-10-03Fix a couple of issues in recent patch to print updates to postgresql.confTom Lane
2009-10-02Ensure that a cursor has an immutable snapshot throughout its lifespan.Alvaro Herrera