summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-07-09Increase PG_SYSLOG_LIMIT (the max line length sent to syslog()) from 128 toTom Lane
2008-07-08Fix performance bug in write_syslog(): the code to preferentially break theTom Lane
2008-07-08Minor improvements to the Gin internal documentation.Neil Conway
2008-07-08Add comment for deadlock_timeout:Bruce Momjian
2008-07-07Fix estimate_num_groups() to assume that GROUP BY expressions yielding booleanTom Lane
2008-07-07Fix AT TIME ZONE (in all three variants) so that we first try to interpretTom Lane
2008-07-06Prevent integer overflows during units conversion when displaying a GUCTom Lane
2008-07-04Fix initialization of GinScanEntryData.partialMatchTeodor Sigaev
2008-07-04Fix a couple of bugs in win32 shmem name generation:Magnus Hagander
2008-07-03Add a function pg_get_keywords() to let clients find out the set of keywordsTom Lane
2008-07-03Fix transaction-lifespan memory leak in xpath(). Report by Matt Magoffin,Tom Lane
2008-07-01Remove GUC extra_desc strings that are redundant with the enum value lists.Tom Lane
2008-07-01Extend VacAttrStats to allow typanalyze functions to store statistic valuesHeikki Linnakangas
2008-07-01"debug" level was supposed to be hidden, since it's just an alias for debug2.Magnus Hagander
2008-07-01Split apart message_level_options into one set for server-side settings andMagnus Hagander
2008-07-01Teach autovacuum how to determine whether a temp table belongs to a crashedTom Lane
2008-06-30Fix recovery.conf boolean variables to take the same range of stringBruce Momjian
2008-06-30Turn PGBE_ACTIVITY_SIZE into a GUC variable, track_activity_query_size.Heikki Linnakangas
2008-06-29Remove unnecessary coziness of GIN code with datum copying. Now thatTom Lane
2008-06-28If pnstrdup is going to be promoted to a generally available function,Tom Lane
2008-06-27Consider a clause to be outerjoin_delayed if it references the nullable sideTom Lane
2008-06-27Improve planner's estimation of the size of an append relation: rather thanTom Lane
2008-06-26Fix bug "select lower('asd') = 'asd'" returns false with multibyte encodingTeodor Sigaev
2008-06-26Fix 'pg_ctl restart' to preserve command-line arguments.Bruce Momjian
2008-06-26Use SYSTEMQUOTE as concatentation to strings, rather than %s printfBruce Momjian
2008-06-24Reduce the alignment requirement of type "name" from int to char, and arrangeTom Lane
2008-06-23Merge duplicate upper/lower/initcap() routines in oracle_compat.c andBruce Momjian
2008-06-23Fix Gen_fmgrtab.sh to not rely on hard-wired knowledge of the column numbersTom Lane
2008-06-20Seems I was too optimistic in supposing that sinval's maxMsgNum could beTom Lane
2008-06-19Rewrite the sinval messaging mechanism to reduce contention and avoidTom Lane
2008-06-19Fix a few places that were non-multibyte-safe in tsearch configuration fileTom Lane
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