summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2008-07-12Const-ify the arguments of str_tolower() and friends to suppress compileTom Lane
2008-07-11Multi-column GIN indexes. Teodor SigaevTom Lane
2008-07-11Allow binary-coercible types for cast function arguments and return types.Peter Eisentraut
2008-07-11Make sure we only try to free snapshots that have been passed throughAlvaro Herrera
2008-07-11Fix a few typos in comments in snapmgr.c, and sort header inclusionsNeil Conway
2008-07-10Add unchangeable GUC "variables" segment_size, wal_block_size, andTom Lane
2008-07-10Tighten up SS_finalize_plan's computation of valid_params to exclude Params ofTom Lane
2008-07-10Fix mis-calculation of extParam/allParam sets for plan nodes, as seen inTom Lane
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-03Don't refer to the database name "regression" inside the regression testPeter Eisentraut
2008-07-03Don't print the name of the database in psql \z.Peter Eisentraut
2008-07-03Clean up weird whitespace. Separate patch to simplifiy the next change.Peter Eisentraut
2008-07-03Fix psql's \d and allied commands to work with all server versions back to 7.4.Tom Lane
2008-07-03Update source code comment about when to use gettext_noop().Bruce Momjian
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-01Move volatility, language, etc. modifiers before function body in the pg_dumpHeikki Linnakangas
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-01Fix identify_system_timezone() so that it tests the behavior of the systemTom Lane
2008-07-01Teach autovacuum how to determine whether a temp table belongs to a crashedTom Lane
2008-07-01Issue psql connection warnings on connection start and via \c, perBruce Momjian
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-27Fix standalone libpq build on win32.Magnus Hagander
2008-06-27Improve planner's estimation of the size of an append relation: rather thanTom Lane
2008-06-26Fix pg_ctl bug where detection of binary location from postmaster.optsBruce Momjian
2008-06-26Fix bug "select lower('asd') = 'asd'" returns false with multibyte encodingTeodor Sigaev
2008-06-26Synced parserMichael Meskes
2008-06-26Simplify 'pg_ctl restart' detection of first argument inBruce Momjian
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-26Remove use of postmaster.opts.default by pg_ctl.Bruce Momjian
2008-06-24Reduce the alignment requirement of type "name" from int to char, and arrangeTom Lane
2008-06-24Oops, make the MSVC build put fmgroids.h where it needs to be.Tom Lane
2008-06-23Add libpq comment about how to determine the format used for passingBruce Momjian
2008-06-23Merge duplicate upper/lower/initcap() routines in oracle_compat.c andBruce Momjian