summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2001-05-15we found a problem in GiST with massive insert/update operationsBruce Momjian
2001-05-15Re-add pg_index.indhaskeytype.Bruce Momjian
2001-05-14Remove columns pg_index.haskeytype and pg_index.indisclustered. Not used.Bruce Momjian
2001-05-14Remove unused tables pg_variable, pg_inheritproc, pg_ipl tables. InitdbBruce Momjian
2001-05-12Modify RelationGetBufferForTuple() so that we only do lseek and lockTom Lane
2001-05-07Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane
2001-05-04Seems like we should not hold off cancel/die interrupts while we areTom Lane
2001-05-03Ensure that btree sort ordering functions and boolean comparison operatorsTom Lane
2001-04-05Fix comment that Vadim found confusing.Tom Lane
2001-04-05StartupXLOG(): initialize XLogCtl->Insert to new page if there isVadim B. Mikheev
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Fix code that incorrectly assumed a 'char foo[N]' local variable wouldTom Lane
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-03-18Remove NEXTXID xlog record type to avoid three-way deadlock risk.Tom Lane
2001-03-18Make sure ControlFile logId/logSeg don't go backwards (barely possible given aTom Lane
2001-03-17Rearrange XLogFileInit so that control-file spinlock is not held while fillingTom Lane
2001-03-16Support syncing WAL log to disk using either fsync(), fdatasync(),Tom Lane
2001-03-14Use SEP_CHAR consistently in forming XLOG pathnames.Tom Lane
2001-03-13Change xlog page-header format to include StartUpID. Use the SUI toTom Lane
2001-03-13XLOG (and related) changes:Tom Lane
2001-03-07Repair a number of places that didn't bother to check whether PageAddItemTom Lane
2001-02-26Implement COMMIT_SIBLINGS parameter to allow pre-commit delay to occurTom Lane
2001-02-22Clean up index/btree comments/macros, as approved.Bruce Momjian
2001-02-22Avoid 'FATAL: out of free buffers: time to abort !" errorHiroshi Inoue
2001-02-18Change default commit_delay to zero, update documentation.Tom Lane
2001-02-18Change s_lock to not use any zero-delay select() calls; these are just aTom Lane
2001-02-15Although we can't support out-of-line TOAST storage in indexes (yet),Tom Lane
2001-02-13Comments about GetFreeXLBuffer().Vadim B. Mikheev
2001-02-13Removed abort() in XLogFileOpen.Vadim B. Mikheev
2001-02-09When updating a tuple containing compressed-in-line fields, do notTom Lane
2001-02-07Runtime btree recovery is now ON by default.Vadim B. Mikheev
2001-02-02Runtime tree recovery is implemented, just testing is left -:)Vadim B. Mikheev
2001-01-31Couple additional functions to fix tree at runtime.Vadim B. Mikheev
2001-01-29Call _bt_fixroot() from _bt_insertonpg.Vadim B. Mikheev
2001-01-29Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane
2001-01-26First step in attempt to fix tree at runtime: create upper levelsVadim B. Mikheev
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-23Do _bt_wrtbuf() outside critical section, per discussion with Vadim 1/19.Tom Lane
2001-01-23Fix all the places that called heap_update() and heap_delete() withoutTom Lane
2001-01-19Make critical sections (elog->crash) and interrupt holdoff sectionsTom Lane
2001-01-18Comment out xlrec in xact_redo - no support for file unlinking onVadim B. Mikheev
2001-01-15Tweak heap_update/delete so that we do not hold the buffer context lockTom Lane
2001-01-14Restructure backend SIGINT/SIGTERM handling so that 'die' interruptsTom Lane
2001-01-12Add more critical-section calls: all code sections that hold spinlocksTom Lane
2001-01-12New feature:Marc G. Fournier
2001-01-091. Checkpoint.undo may be after checkpoint itself:Vadim B. Mikheev
2001-01-07Correct nasty error in heap_update: it was releasing the buffer refcountTom Lane
2001-01-02Clean up non-reentrant interface for hash_seq/HashTableWalk, so thatTom Lane