summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-1927-34/+59
* Fix 64-bit problem in recent patch.Tom Lane2008-06-151-2/+2
* Improve the various elog messages in tuptoaster.c to report which TOAST tableTom Lane2008-06-131-25/+37
* Refactor XLogOpenRelation() and XLogReadBuffer() in preparation for relationHeikki Linnakangas2008-06-1210-356/+173
* Fix bug in the WAL recovery code to finish an incomplete split.Heikki Linnakangas2008-06-111-3/+5
* Fix breakage caused by conflicting patches, as evidenced by the buildfarm.Alvaro Herrera2008-06-081-1/+2
* Rewrite DROP's dependency traversal algorithm into an honest two-passTom Lane2008-06-081-1/+42
* Move BufferGetPageSize and BufferGetPage from bufpage.h to bufmgr.h. It isAlvaro Herrera2008-06-087-11/+15
* Set hidden field for guc enum missed in previous commit.Magnus Hagander2008-05-281-7/+7
* Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane2008-05-271-10/+1
* Remove arbitrary 10MB limit on two-phase state file size. It's not that hardHeikki Linnakangas2008-05-191-3/+15
* Fix a subtle bug exposed by recent wal_sync_method rearrangements.Tom Lane2008-05-171-3/+1
* Reduce unnecessary PANIC to ERROR, improve a couple of comments.Tom Lane2008-05-161-15/+11
* Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane2008-05-163-23/+385
* Persuade GIN to react to control-C in a reasonable amount of timeTom Lane2008-05-161-1/+10
* Remove the special variable for open_sync_bit used in O_SYNC and O_DSYNCMagnus Hagander2008-05-141-31/+32
* Don't try to close negative file descriptors, since this can causeMagnus Hagander2008-05-131-3/+6
* This is the patch replace offnum++ by OffsetNumberNext, to beBruce Momjian2008-05-131-2/+2
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-121-9/+10
* Fix breakage by the wal_sync_method patch in installations that useMagnus Hagander2008-05-121-1/+2
* Put back bufmgr.h in bufpage.h -- it is needed by some macros.Alvaro Herrera2008-05-127-14/+7
* Report which WAL sync method we are trying to change *to* when it fails,Magnus Hagander2008-05-121-2/+2
* Convert wal_sync_method to guc enum.Magnus Hagander2008-05-121-40/+53
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-1238-49/+99
* Change the rules for inherited CHECK constraints to be essentially the sameTom Lane2008-05-091-39/+10
* Fix Assert introduced in previous patch.Heikki Linnakangas2008-05-091-2/+2
* Fix incorrect archive truncation point calculation in the %r recovery_commandHeikki Linnakangas2008-05-091-6/+30
* Update error messages, per notes from Tom.Magnus Hagander2008-04-241-3/+4
* Prevent shutdown in normal mode if online backup is running, andMagnus Hagander2008-04-231-1/+51
* Fix using too many LWLocks bug, reported by Craig RingerTeodor Sigaev2008-04-221-205/+157
* Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane2008-04-211-5/+39
* Clean up a few places where Datums were being treated as pointers (and viceAlvaro Herrera2008-04-175-41/+42
* Repair two places where SIGTERM exit could leave shared memory stateTom Lane2008-04-163-29/+38
* Push index operator lossiness determination down to GIST/GIN opclassTom Lane2008-04-144-46/+116
* Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane2008-04-136-31/+63
* Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane2008-04-123-67/+110
* Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane2008-04-106-147/+122
* Improve hash_any() to use word-wide fetches when hashing suitably alignedTom Lane2008-04-061-37/+193
* Have pg_stop_backup() wait for all archive files to be sent, rather thanBruce Momjian2008-04-051-6/+43
* Remove heap_release_fetch, which is no longer used anywhere; this simplifiesTom Lane2008-04-031-29/+3
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-266-6/+12
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-266-12/+12
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-266-8/+12
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-253-40/+16
* More README src cleanups.Bruce Momjian2008-03-213-9/+7
* Make source code READMEs more consistent. Add CVS tags to all README files.Bruce Momjian2008-03-205-22/+35
* Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut2008-03-171-4/+5
* Fix TransactionIdIsCurrentTransactionId() to use binary search instead ofTom Lane2008-03-172-60/+127
* When creating a large hash index, pre-sort the index entries by estimatedTom Lane2008-03-165-15/+179
* Change hash index creation so that rather than always establishing exactlyTom Lane2008-03-153-22/+61