summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Code review for log_lock_waits patch. Don't try to issue log messages fromTom Lane2007-06-192-6/+12
* Arrange for quote_identifier() and pg_dump to not quote keywords that areTom Lane2007-06-181-4/+12
* Tweak the API for per-datatype typmodin functions so that they are passedTom Lane2007-06-154-19/+26
* Implement a chunking protocol for writes to the syslogger pipe, with messagesAndrew Dunstan2007-06-141-1/+49
* Minor comment fixes.Tom Lane2007-06-121-3/+4
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-112-4/+11
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-113-3/+26
* Teach heapam code to know the difference between a real seqscan and theTom Lane2007-06-093-11/+8
* Arrange for large sequential scans to synchronize with each other, so thatTom Lane2007-06-084-12/+28
* Rework temp_tablespaces patch so that temp tablespaces are assigned separatelyTom Lane2007-06-075-13/+15
* Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane2007-06-066-14/+32
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-0511-275/+112
* The session_replication_role actually can be changed at will duringJan Wieck2007-06-051-2/+1
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-036-12/+17
* Allow leading and trailing whitespace in the input to the booleanNeil Conway2007-06-014-5/+15
* Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane2007-06-011-2/+2
* Buy back some of the cycles spent in more-expensive hash functions byTom Lane2007-06-011-1/+3
* Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane2007-06-012-3/+4
* Change build_index_pathkeys() so that the expressions it builds to representTom Lane2007-05-311-5/+7
* Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane2007-05-308-19/+51
* Fix trivial misspelling in comment.Tom Lane2007-05-301-2/+2
* Fix a bug in input processing for the "interval" type. Previously,Neil Conway2007-05-291-11/+15
* Ooops, I was too busy worrying about getting the transactional infrastructureTom Lane2007-05-271-1/+2
* pgstat's on-proc-exit hook has to execute after the last transaction commitTom Lane2007-05-271-1/+3
* Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane2007-05-275-98/+140
* Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane2007-05-253-5/+33
* Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane2007-05-221-1/+8
* Fix best_inner_indexscan to return both the cheapest-total-cost andTom Lane2007-05-222-9/+11
* Teach tuplestore.c to throw away data before the "mark" point when the callerTom Lane2007-05-213-5/+9
* XPath fixes:Peter Eisentraut2007-05-213-7/+7
* To support external compression of archived WAL data, add a flag bit toTom Lane2007-05-203-6/+15
* Have CLUSTER advance the table's relfrozenxid. The new frozen point is theAlvaro Herrera2007-05-181-2/+2
* Temporary fix for the problem that pg_stat_activity, inet_client_addr(),Tom Lane2007-05-171-1/+2
* Fix parameter recalculation for Limit nodes: during a ReScan call we mustTom Lane2007-05-171-1/+2
* Move the tuple freezing point in CLUSTER to a point further back in the past,Alvaro Herrera2007-05-172-5/+6
* Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, toAlvaro Herrera2007-05-161-2/+2
* Update comments for PG_DETOAST_PACKED and VARDATA_ANY on a structuresBruce Momjian2007-05-152-2/+16
* Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane2007-05-121-3/+6
* Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane2007-05-111-1/+5
* Support arrays of composite types, including the rowtypes of regular tablesTom Lane2007-05-115-176/+191
* Reserve some pg_statistic "kind" codes for use by the ESRI ST_GeometryTom Lane2007-05-081-2/+4
* Add a hash function for "numeric". Mark the equality operator forNeil Conway2007-05-088-10/+18
* Add a line to the EXPLAIN ANALYZE output for a Sort node, showing theTom Lane2007-05-041-1/+3
* tas() support for Renesas' M32R processor. Kazuhiro InaokaTom Lane2007-05-042-1/+19
* A few fixups in error handling: mark pg_re_throw() as noreturn for gcc,Tom Lane2007-05-042-5/+15
* Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane2007-05-044-7/+14
* Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetchingTom Lane2007-05-031-3/+5
* During WAL recovery, when reading a page that we intend to overwrite completelyTom Lane2007-05-021-1/+2
* Fix oversight in PG_RE_THROW processing: it's entirely possible that thereTom Lane2007-05-021-2/+3
* Change the timestamps recorded in transaction commit/abort xlog recordsTom Lane2007-04-303-6/+8