summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-01-06Fix Windows-only postmaster code to reject a connection request and continue,Tom Lane
2006-01-06Convert Assert checking for empty page into a regular test and elog.Tom Lane
2006-01-06Fix ReadBuffer() to correctly handle the case where it's trying to extendTom Lane
2006-01-05Update x86 Solaris documenation ideas.Bruce Momjian
2006-01-05Add compile flags sample.Bruce Momjian
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2006-01-05Remove BEOS port.Bruce Momjian
2006-01-05Remove QNX port.Bruce Momjian
2006-01-04Rearrange backend startup sequence so that ShmemIndexLock can becomeTom Lane
2006-01-04Fix another case in which autovacuum would fail while analyzingTom Lane
2006-01-03Assume select() might modify struct timeout, so remove previousBruce Momjian
2006-01-03Use setitimer() for stats file write, rather than do a gettimeofday()Bruce Momjian
2006-01-02Don't assume that LC_MESSAGES is always available on WIN32. Per Magnus.Tom Lane
2006-01-02Reset flex state in a way that works for both flex 2.5.4 and 2.5.31.Tom Lane
2006-01-02Change if (!(x || y)) construct with if (!x && !y), for clarity.Bruce Momjian
2006-01-01Rewrite ProcessConfigFile() to avoid misbehavior at EOF, as per reportTom Lane
2006-01-01Remove DOS line endings ("\r\n") from several .po files. DOS line endingsNeil Conway
2005-12-31Rename variable to cmd_str.Bruce Momjian
2005-12-31Rename variable 'what' to 'stat_msg'.Bruce Momjian
2005-12-31Prefix client-side prepare with '[protocol]' rather than '[client]'.Bruce Momjian
2005-12-30Rename send_rfq to send_ready_for_query.Bruce Momjian
2005-12-30Mmark client-side prepare/bind/execute statements with "[client]" soBruce Momjian
2005-12-30Add support for Solaris x86_64 using Sun's compiler.Bruce Momjian
2005-12-30Repair EXPLAIN failure when trying to display a plan condition that involvesTom Lane
2005-12-30Disallow setting ssl = on if SSL is not compiled in.Peter Eisentraut
2005-12-29Get rid of the SpinLockAcquire/SpinLockAcquire_NoHoldoff distinctionTom Lane
2005-12-29Revert some careless search-and-replace: "ADD" in comment text shouldNeil Conway
2005-12-28Arrange to set the LC_XXX environment variables to match our localeTom Lane
2005-12-28Move plpgsql's fetchArgInfo() into funcapi.c, and rename toTom Lane
2005-12-28Mention "table" in "violates foreign key constraint" message that wasBruce Momjian
2005-12-28Remove silly use of DLLIMPORT.Tom Lane
2005-12-28Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian
2005-12-28Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane
2005-12-27Our code had:Bruce Momjian
2005-12-27Protect ADD and HEADER symbols from conflicting with MIPS includes.Bruce Momjian
2005-12-26More uses of IS_HIGHBIT_SET() macro.Bruce Momjian
2005-12-25I have added these macros to c.h:Bruce Momjian
2005-12-24Formatting cleanups.Bruce Momjian
2005-12-24Formatting cleanup.Bruce Momjian
2005-12-24Fix long standing Asian multibyte charsets bug.Tatsuo Ishii
2005-12-23Wups, fat-fingered the calculation the first time. Update comment inTom Lane
2005-12-23Allow CREATE/ALTER ROLE PASSWORD NULL to allow restoring the default statePeter Eisentraut
2005-12-23Fix for rearranging encoding id ISO-8859-5 to ISO-8859-8.Tatsuo Ishii
2005-12-23Add quotes around search_path "$user" so that SHOW output can be used inBruce Momjian
2005-12-22Adjust string comparison so that only bitwise-equal strings are consideredTom Lane
2005-12-20Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane
2005-12-16Rethink prior patch to filter out dead backend entries from the pgstatsTom Lane
2005-12-14Defend against crash while processing Describe Statement or Describe PortalTom Lane
2005-12-14Fix problem with whole-row Vars referencing sub-select outputs, perTom Lane
2005-12-11Divide the lock manager's shared state into 'partitions', so as toTom Lane