summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2003-05-22Repair sometimes-incorrect computation of StartUpID after a crash, perTom Lane
2003-05-15Indexing support for pattern matching operations via separate operatorPeter Eisentraut
2003-05-14Backend support for autocommit removed, per recent discussions. TheTom Lane
2003-05-13In RowDescription messages, report columns of domain datatypes as havingTom Lane
2003-05-12Add binary I/O routines for a bunch more datatypes. Still a few to go,Tom Lane
2003-05-10Adjust CreateCheckpoint so that buffer dumping activities and cleanup ofTom Lane
2003-05-09Implement new-protocol binary I/O support in DataRow, Bind, and FunctionCallTom Lane
2003-05-08Update 3.0 protocol support to match recent agreements about how toTom Lane
2003-05-06Restructure command destination handling so that we pass aroundTom Lane
2003-05-06Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane
2003-05-05Extended query protocol: parse, bind, execute, describe FE/BE messages.Tom Lane
2003-05-03Handle clog structure in shared memory in exec() case, for Win32.Bruce Momjian
2003-05-02Back out last commit --- wrong patch.Bruce Momjian
2003-05-02Dump/read non-default GUC values for use by exec'ed backends, for Win32.Bruce Momjian
2003-05-02Portal and memory management infrastructure for extended query protocol.Tom Lane
2003-04-26Add transaction status field to ReadyForQuery messages, and make roomTom Lane
2003-04-25In the continuing saga of FE/BE protocol revisions, add reporting ofTom Lane
2003-04-22Another round of protocol changes. Backend-to-frontend messages now allTom Lane
2003-04-18Make Win32 tests to match existing Cygwin tests, where appropriate.Bruce Momjian
2003-04-14Reorganize clog's error reporting so that PANIC on clog I/O error canTom Lane
2003-03-27This patch implements holdable cursors, following the proposalBruce Momjian
2003-03-24Modify keys_are_unique optimization to release buffer pins before itTom Lane
2003-03-23Adjust amrescan code so that it's allowed to call index_rescan with aTom Lane
2003-03-21Allow error query to start transaction in autocommit off mode.Bruce Momjian
2003-03-14Remove unneeded dash blocks around function start comments.Bruce Momjian
2003-03-10This patch fixes a bunch of spelling mistakes in comments throughout theTom Lane
2003-03-04Reimplement free-space-map management as per recent discussions.Tom Lane
2003-02-24During VACUUM FULL, truncate off any deletable pages that are at theTom Lane
2003-02-23Remove no-longer-used FixBTree GUC variable.Tom Lane
2003-02-23btree page recycling can be done as soon as page's next-xact label isTom Lane
2003-02-23Adjust btbulkdelete logic so that only one WAL record is issued whileTom Lane
2003-02-23Improve coding of log_heap_clean() and heap_xlog_clean().Tom Lane
2003-02-23First cut at recycling space in btree indexes. Still some rough edgesTom Lane
2003-02-22More infrastructure for btree compaction project. Tree-traversal codeTom Lane
2003-02-21Make btree index structure adjustments and WAL logging changes needed toTom Lane
2003-02-13This trivial patch removes the usage of some old statistics code that noBruce Momjian
2003-01-25Use stat(2) to probe for existing xlog segments in InstallXLogFileSegment,Tom Lane
2003-01-10Read-only transactions, as defined in SQL.Peter Eisentraut
2003-01-08Fix for bug #866. 7.3 contains new logic for avoiding redundant calls toTom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-18Put back error test for DECLARE CURSOR outside a transaction block ...Tom Lane
2002-11-15Rename show_btree_build_stats to log_btree_build_statsBruce Momjian
2002-11-13Update xact.c comments for clarity.Bruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-11-08This patch removes a bunch of superfluous #include directives: ifBruce Momjian
2002-11-02Clean up a few fprintf(stderr)'s that should be elog's.Tom Lane