summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera
2008-06-18Fix compiler warning introduced by recent patch. Tsk tsk.Tom Lane
2008-06-18Improve error reporting for problems in text search configuration filesTom Lane
2008-06-18Move wchar2char() and char2wchar() from tsearch into /mb to be easier toBruce Momjian
2008-06-17Remove freeBackends counter from the sinval shared memory area. We used toTom Lane
2008-06-17Clean up some problems with redundant cross-type arithmetic operators. AddTom Lane
2008-06-17Add URL for introduction to multibyte programming in C.Bruce Momjian
2008-06-17Move USE_WIDE_UPPER_LOWER define to c.h, and remove TS_USE_WIDE and useBruce Momjian
2008-06-17Fix the code that adds regclass constants to a plan's list of relation OIDsTom Lane
2008-06-15Make DROP INDEX lock the parent table before locking the index. This behaviorTom Lane
2008-06-15Fix 64-bit problem in recent patch.Tom Lane
2008-06-15Rearrange ALTER TABLE syntax processing as per my recent proposal: theTom Lane
2008-06-14Refactor the handling of the various DropStmt variants so that when multipleTom Lane
2008-06-13Improve the various elog messages in tuptoaster.c to report which TOAST tableTom Lane
2008-06-12Refactor XLogOpenRelation() and XLogReadBuffer() in preparation for relationHeikki Linnakangas
2008-06-11Improve reporting of dependencies in DROP to work like the scheme that weTom Lane
2008-06-11Fix spelling mistake in postgresql.conf.Bruce Momjian
2008-06-11Fix bug in the WAL recovery code to finish an incomplete split.Heikki Linnakangas
2008-06-09Fix unportable (and incorrect anyway) usage of LL constant suffix thatTom Lane
2008-06-09Fix datetime input functions to correctly detect integer overflow whenTom Lane
2008-06-09Further tweak for comment in CheckDeadLock(), per Tom.Neil Conway
2008-06-09Fix typo in comment.Neil Conway
2008-06-08Fix breakage caused by conflicting patches, as evidenced by the buildfarm.Alvaro Herrera
2008-06-08Rewrite DROP's dependency traversal algorithm into an honest two-passTom Lane
2008-06-08Move BufferGetPageSize and BufferGetPage from bufpage.h to bufmgr.h. It isAlvaro Herrera
2008-06-08ALTER AGGREGATE OWNER seems to have been missed by the last couple ofTom Lane
2008-06-06Change xlog.h to xlogdefs.h in bufpage.h, and fix fallout.Alvaro Herrera
2008-06-06Fix pg_get_ruledef() so that negative numeric constants are parenthesized.Tom Lane
2008-06-05Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera
2008-06-05Fix some string building in getObjectDescription.Alvaro Herrera
2008-06-01Refactor SPI_cursor_open/SPI_cursor_open_with_args so that the latter setsTom Lane
2008-05-28Set hidden field for guc enum missed in previous commit.Magnus Hagander
2008-05-28Add a field to guc enums to allow hiding of values from display whileMagnus Hagander
2008-05-27Explicitly bind gettext() to the UTF8 locale when in use.Magnus Hagander
2008-05-27Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane
2008-05-26Fix an old corner-case bug in set_config_option: push_old_value has to beTom Lane
2008-05-21Link in keywords file instead of copying it.Michael Meskes
2008-05-20Simplify code in formatting.c now that to upper/lower/initcase do notBruce Momjian
2008-05-19Remove arbitrary 10MB limit on two-phase state file size. It's not that hardHeikki Linnakangas
2008-05-19Make to_char()'s localized month/day names depend on LC_TIME, not LC_MESSAGES.Tom Lane
2008-05-19Coercion sanity check in ri_HashCompareOp failed to allow for enums, as perTom Lane
2008-05-17Fix a subtle bug exposed by recent wal_sync_method rearrangements.Tom Lane
2008-05-17Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan
2008-05-17Allow ALTER SEQUENCE START WITH to change the recorded start_value of aTom Lane
2008-05-16Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane
2008-05-16Reduce unnecessary PANIC to ERROR, improve a couple of comments.Tom Lane
2008-05-16Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane
2008-05-16Persuade GIN to react to control-C in a reasonable amount of timeTom Lane
2008-05-15Add code to eval_const_expressions() to support const-simplification ofTom Lane
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane