summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Update SQL features supported listPeter Eisentraut2010-01-011-6/+6
* Suppress compiler warning, per buildfarm member narwhalTom Lane2009-12-311-3/+4
* Suppress compiler warning (pid_t isn't int everywhere)Tom Lane2009-12-311-9/+9
* Add missing 'static' tag.Tom Lane2009-12-311-2/+2
* Redefine Datum as uintptr_t, instead of unsigned long.Tom Lane2009-12-315-11/+12
* Update SQL features list for aggregate ORDER BY supportPeter Eisentraut2009-12-311-2/+2
* Add information_schema.triggered_update_columnsPeter Eisentraut2009-12-311-7/+21
* Fill in information schema column for trigger WHEN conditionPeter Eisentraut2009-12-301-2/+7
* Dept of second thoughts: recursive case in ANALYZE shouldn't emit aTom Lane2009-12-301-3/+6
* Revise pgstat's tracking of tuple changes to improve the reliability ofTom Lane2009-12-305-116/+132
* Update SQL conformance: search conditions on triggers are supportedPeter Eisentraut2009-12-301-1/+1
* Reset minRecoveryPoint at checkpoints, so that we don't uselessly updateHeikki Linnakangas2009-12-301-1/+3
* Set errno to zero before invoking SSL_read or SSL_write. It appears thatTom Lane2009-12-301-1/+3
* Reject invalid input in int2vectorin.Robert Haas2009-12-301-3/+4
* Add an index on pg_inherits.inhparent, and use it to avoid seqscans inTom Lane2009-12-292-24/+76
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-2911-138/+336
* Previous fix for temporary file management broke returning a set fromHeikki Linnakangas2009-12-297-36/+40
* Remove PGDLLIMPORT used for binary upgrade; must be on the externs, per Tom.Bruce Momjian2009-12-283-6/+6
* Add PGDLLIMPORT for binary_upgrade global variables so shared objectBruce Momjian2009-12-283-6/+6
* Remove non-ascii characters from source code.Bruce Momjian2009-12-281-2/+2
* Avoid memory leak if pgstat_vacuum_stat is interrupted partway through.Tom Lane2009-12-271-3/+5
* Remove a couple of unnecessary calls of CreateCacheMemoryContext. TheseTom Lane2009-12-275-38/+32
* Add backend and pg_dump code to allow preservation of pg_enum oids, forBruce Momjian2009-12-272-16/+31
* Zero-label enums:Bruce Momjian2009-12-261-3/+8
* Fix brain fade in join-removal patch: a pushed-down clause in the outer join'sTom Lane2009-12-251-5/+13
* Rename EnumValuesCreate() single-letter variable names to usefulBruce Momjian2009-12-241-11/+11
* Binary upgrade:Bruce Momjian2009-12-244-24/+59
* Fix wrong WAL info value generated when gistContinueInsert() performs anTom Lane2009-12-241-2/+5
* Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane2009-12-231-26/+18
* Remove code that attempted to rename index columns to keep them in sync withTom Lane2009-12-231-72/+4
* Always pass catalog id to the options validator function specified inHeikki Linnakangas2009-12-232-12/+26
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-2310-87/+253
* Disallow comments on columns of relation types other than tables, views,Tom Lane2009-12-222-44/+23
* More cleanups for the recent large object permissions patch.Robert Haas2009-12-215-26/+20
* There is no good reason for the CREATE TABLE LIKE INCLUDING COMMENTS code toTom Lane2009-12-201-26/+30
* Translation updatesPeter Eisentraut2009-12-192-6692/+7638
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-1946-367/+4047
* binary migration: pg_migratorBruce Momjian2009-12-195-5/+29
* Don't unblock SIGQUIT in the SIGQUIT handlerPeter Eisentraut2009-12-161-1/+2
* If there is no sigdelset(), define it as a macro.Peter Eisentraut2009-12-163-15/+3
* Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane2009-12-161-20/+37
* Several fixes for EXPLAIN (FORMAT YAML), plus one for EXPLAIN (FORMAT JSON).Robert Haas2009-12-161-17/+31
* Avoid unnecessary copying of source string when generating a cloned TParser.Tom Lane2009-12-151-5/+69
* Add a hook to let loadable modules get control at ProcessUtility execution,Tom Lane2009-12-151-1/+26
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-1517-189/+633
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-1514-107/+175
* Fix a bug introduced when set-returning SQL functions were made inline-able:Tom Lane2009-12-144-38/+146
* Allow LDAP authentication to operate in search+bind mode, meaning itMagnus Hagander2009-12-122-44/+257
* Fix integer-to-bit-string conversions to handle the first fractional byteTom Lane2009-12-121-3/+13
* Export ExplainBeginOutput() and ExplainEndOutput() for auto_explain.Robert Haas2009-12-121-5/+3