summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2009-12-31Suppress compiler warning, per buildfarm member narwhalTom Lane
2009-12-31Suppress compiler warning (pid_t isn't int everywhere)Tom Lane
2009-12-31Add missing 'static' tag.Tom Lane
2009-12-31Redefine Datum as uintptr_t, instead of unsigned long.Tom Lane
2009-12-31Update SQL features list for aggregate ORDER BY supportPeter Eisentraut
2009-12-31Add information_schema.triggered_update_columnsPeter Eisentraut
2009-12-30Fill in information schema column for trigger WHEN conditionPeter Eisentraut
2009-12-30Dept of second thoughts: recursive case in ANALYZE shouldn't emit aTom Lane
2009-12-30Revise pgstat's tracking of tuple changes to improve the reliability ofTom Lane
2009-12-30Update SQL conformance: search conditions on triggers are supportedPeter Eisentraut
2009-12-30Reset minRecoveryPoint at checkpoints, so that we don't uselessly updateHeikki Linnakangas
2009-12-30Set errno to zero before invoking SSL_read or SSL_write. It appears thatTom Lane
2009-12-30Reject invalid input in int2vectorin.Robert Haas
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-29Previous fix for temporary file management broke returning a set fromHeikki Linnakangas
2009-12-28Remove PGDLLIMPORT used for binary upgrade; must be on the externs, per Tom.Bruce Momjian
2009-12-28Add PGDLLIMPORT for binary_upgrade global variables so shared objectBruce Momjian
2009-12-28Remove non-ascii characters from source code.Bruce Momjian
2009-12-27Avoid memory leak if pgstat_vacuum_stat is interrupted partway through.Tom Lane
2009-12-27Remove a couple of unnecessary calls of CreateCacheMemoryContext. TheseTom Lane
2009-12-27Add backend and pg_dump code to allow preservation of pg_enum oids, forBruce Momjian
2009-12-26Zero-label enums:Bruce Momjian
2009-12-25Fix brain fade in join-removal patch: a pushed-down clause in the outer join'sTom Lane
2009-12-24Rename EnumValuesCreate() single-letter variable names to usefulBruce Momjian
2009-12-24Binary upgrade:Bruce Momjian
2009-12-24Fix wrong WAL info value generated when gistContinueInsert() performs anTom Lane
2009-12-23Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane
2009-12-23Remove code that attempted to rename index columns to keep them in sync withTom Lane
2009-12-23Always pass catalog id to the options validator function specified inHeikki Linnakangas
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-22Disallow comments on columns of relation types other than tables, views,Tom Lane
2009-12-21More cleanups for the recent large object permissions patch.Robert Haas
2009-12-20There is no good reason for the CREATE TABLE LIKE INCLUDING COMMENTS code toTom Lane
2009-12-19Translation updatesPeter Eisentraut
2009-12-19Allow read only connections during recovery, known as Hot Standby.Simon Riggs
2009-12-19binary migration: pg_migratorBruce Momjian
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-16Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane
2009-12-16Several fixes for EXPLAIN (FORMAT YAML), plus one for EXPLAIN (FORMAT JSON).Robert Haas
2009-12-15Avoid unnecessary copying of source string when generating a cloned TParser.Tom Lane
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-12Fix integer-to-bit-string conversions to handle the first fractional byteTom Lane
2009-12-12Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain.Robert Haas
2009-12-11Ensure that the result tuple of an EvalPlanQual cycle gets materializedTom Lane