summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2005-12-11Implement IS NOT DISTINCT FROM, update the regression tests and docs.Neil Conway
2005-12-10Teach deparsing of CASE expressions to cope with the simplified formsTom Lane
2005-12-09Allow installation into directories containing spaces in the name.Peter Eisentraut
2005-12-09Simplify lock manager data structures by making a clear separation betweenTom Lane
2005-12-08Fix bgwriter's failure to release buffer pins and open files after anTom Lane
2005-12-08Fix thinko in comment.Tom Lane
2005-12-07Push the responsibility for handling ignore_killed_tuples down intoTom Lane
2005-12-07A couple of tiny performance hacks in _bt_step(). Remove PageIsEmptyTom Lane
2005-12-07Fix a couple of lingering references to POSTQUEL query syntax, per Simon.Tom Lane
2005-12-06Get rid of slru.c's hardwired insistence on a fixed number of slots perTom Lane
2005-12-06Arrange for read-only accesses to SLRU page buffers to take only a sharedTom Lane
2005-12-06In a nestloop inner indexscan, it's OK to use pushed-down baserestrictinfoTom Lane
2005-12-03Allow to_char(interval) and to_char(time) to use AM/PM specifications.Bruce Momjian
2005-12-03Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane
2005-12-02Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane
2005-12-02Remove comment on errno=0 lines, but add mention to port/strtol.c function.Bruce Momjian
2005-12-02Rearrange code in ExecInitBitmapHeapScan so that we don't initialize theTom Lane
2005-12-01Add comment to pg_atoi.Bruce Momjian
2005-12-01Comment "errno = 0" in a more generic way.Bruce Momjian
2005-12-01Retry in FileRead and FileWrite if Windows returns ERROR_NO_SYSTEM_RESOURCES.Tom Lane
2005-12-01Add comments about why errno is set to zero.Bruce Momjian
2005-12-01Check for overflow in strtol() while parsing datetime inputs.Tom Lane
2005-12-01Refactor some bits in aclchk.c in order to reduce code duplication.Alvaro Herrera
2005-11-30Rearrange code in pg_atoi() to avoid assuming that isspace() cannotTom Lane
2005-11-30Tweak choose_bitmap_and() heuristics in the light of example provided in bugTom Lane