summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2004-09-01Fix mistaken comment.Tom Lane
2004-08-31needs_toast_table() should ignore dropped columns.Tom Lane
2004-08-31Code review for recent changes in guc-file.l. Avoid multiple frees,Tom Lane
2004-08-31Code review for various recent GUC hacking. Don't elog(ERROR) whenTom Lane
2004-08-31Fix unintended assignment of sequences to the containing schema'sTom Lane
2004-08-31FlushRelationBuffers was also being a bit cavalier about whether theTom Lane
2004-08-31copy_relation_data was mistakenly assuming that the source relationTom Lane
2004-08-31Replace log_filename_prefix with more general log_filename parameter,Tom Lane
2004-08-30Improve spinlock selftest to make it able to detect misdeclaration ofTom Lane
2004-08-30Ensure that the remainder of the current pg_clog page is zeroed duringTom Lane
2004-08-30Fix failure to advance nextXID beyond subtransactions whose XIDs appearTom Lane
2004-08-30Tweak md.c logic to cope with the situation where WAL replay tries toTom Lane
2004-08-30Dept. of second thoughts: it'd be a good idea to flush buffersTom Lane
2004-08-30Another pgindent run with lib typedefs added.Bruce Momjian
2004-08-29Add WAL logging for CREATE/DROP DATABASE and CREATE/DROP TABLESPACE.Tom Lane
2004-08-29Widen xl_len field of XLogRecord header to 32 bits, so that we'll haveTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-29Fix for postmaster.c function win32_waitpid(int *exitstatus) call toBruce Momjian
2004-08-29Add hint about using GRANT with non-trusted languages.Bruce Momjian
2004-08-29Several Cygwin fixes pointed out by Reini Urban.Bruce Momjian
2004-08-29>>> I understand your disliking of non-posix stuff. OTOH,Bruce Momjian
2004-08-28Now that TransactionIdDidAbort doesn't think it should try to modifyTom Lane
2004-08-28Add missing Assert to make TransactionIdDidAbort more consistent withTom Lane
2004-08-28Rearrange order of operations in heap_drop_with_catalog and index_dropTom Lane
2004-08-28Use dynamic buffer for token buffer in win32 admin checkBruce Momjian
2004-08-28Fix relcache to account properly for subtransaction status of 'new'Tom Lane
2004-08-28Further tightening of the array literal parser. Prevent junkJoe Conway
2004-08-28Can't truncate pg_subtrans during a recovery checkpoint --- subtransTom Lane
2004-08-27Fix Windows emulation of kill(pid, 0). This will now succeed, but onlyTom Lane
2004-08-27Introduce local hash table for lock state, as per recent proposal.Tom Lane
2004-08-26Fix user locks. Broken some time ago for all platforms by Windows-relatedTom Lane
2004-08-26Update documentation to prefer CIDR format for pg_hba.conf and use newBruce Momjian
2004-08-26Update Win32 wording.Bruce Momjian
2004-08-25Revise ResourceOwner code to avoid accumulating ResourceOwner objectsTom Lane
2004-08-24Translation updatePeter Eisentraut
2004-08-24Allow second and subsequent names in a qualified (dotted) name to beTom Lane
2004-08-23Rearrange pg_subtrans handling as per recent discussion. pg_subtransTom Lane
2004-08-22Tweak code so that pg_subtrans is never consulted for XIDs older thanTom Lane
2004-08-22Code review for ALTER INDEX patch.Tom Lane
2004-08-21Remove Solaris bug mention in pg_hba.conf.Bruce Momjian
2004-08-20>>At this stage of the game I would just change pg_hba.conf.sample to useBruce Momjian
2004-08-20Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian
2004-08-20> After all that about numbering centuries and millenia correctly,Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-08-17Fix bug introduced into _bt_getstackbuf() on 2003-Feb-21: the initialTom Lane
2004-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-08-16Mark server_encoding and integer_datetimes as GUC_REPORT, per previousTom Lane
2004-08-15Dept. of further reflection: I looked around to see if any other callersTom Lane
2004-08-15Xmin calculations should consider only top transaction IDs, andTom Lane