summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-04-18Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera
2008-04-18Fix rmtree() so that it keeps going after failure to remove any individualTom Lane
2008-04-18Fix two race conditions between the pending unlink mechanism that was put inHeikki Linnakangas
2008-04-18Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane
2008-04-17Clean up a few places where Datums were being treated as pointers (and viceAlvaro Herrera
2008-04-17Fix a couple of oversights associated with the "physical tlist" optimization:Tom Lane
2008-04-17Re-enable pg_terminate_backend() using SIGTERM. SIGTERM testing stillBruce Momjian
2008-04-17Add some code to EXPLAIN to show the targetlist (ie, output columns)Tom Lane
2008-04-16Repair two places where SIGTERM exit could leave shared memory stateTom Lane
2008-04-16Fix MinGW warnings re formats and unused variables. per ITAGAKI TakahiroAndrew Dunstan
2008-04-16Fix LOAD_CRIT_INDEX() macro to take out AccessShareLock on the system indexTom Lane
2008-04-15Revert addition of pg_terminate_backend() because of race conditions.Bruce Momjian
2008-04-15Add pg_terminate_backend() to allow terminating only a single session.Bruce Momjian
2008-04-14Push index operator lossiness determination down to GIST/GIN opclassTom Lane
2008-04-13Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane
2008-04-13Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane
2008-04-12Clean up a few places where Datums were being treated as pointers withoutTom Lane
2008-04-12Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane
2008-04-11Add some debug support code to try to catch future mistakes in the area ofTom Lane
2008-04-11Fix several datatype input functions that were allowing unused bytes in theirTom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2008-04-09Small wording improvements for source code READMEs.Bruce Momjian
2008-04-09Revert README cleanups.Bruce Momjian
2008-04-09Revert sentence removal from nickname in FAQ.Bruce Momjian
2008-04-08Fix tsvector_update_trigger() to be domain-friendly: it needs to allow allTom Lane
2008-04-07Implement a few changes to how shared libraries and dynamically loadablePeter Eisentraut
2008-04-06Improve hash_any() to use word-wide fetches when hashing suitably alignedTom Lane
2008-04-05Defend against JOINs having more than 32K columns altogether. We cannotTom Lane
2008-04-05Have pg_stop_backup() wait for all archive files to be sent, rather thanBruce Momjian
2008-04-04Re-implement division for numeric values using the traditional "schoolbook"Tom Lane
2008-04-04Remove no-longer-used function assign_backslash_quote()Tom Lane
2008-04-04Implement current_query(), that shows the currently executing query.Bruce Momjian
2008-04-04Oops, change should go in scan.l to survive a clean checkout and not justMagnus Hagander
2008-04-04Convert backslash_quote guc to use enum.Magnus Hagander
2008-04-04Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander
2008-04-03Remove heap_release_fetch, which is no longer used anywhere; this simplifiesTom Lane
2008-04-03Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerlyTom Lane
2008-04-03Oops, add proper #ifdef for systems without support for syslog.Magnus Hagander
2008-04-03Convert syslog_facility guc to enum type.Magnus Hagander
2008-04-02Revert my bad decision of about a year ago to make PortalDefineQueryTom Lane
2008-04-02Convert three more guc settings to enum type:Magnus Hagander
2008-04-01Add SPI-level support for executing SQL commands with one-time-use plans,Tom Lane
2008-04-01Fix an oversight I made in a cleanup patch over a year ago:Tom Lane
2008-03-31Apply my original fix for Taiki Yamaguchi's bug report about DISTINCT MAX().Tom Lane
2008-03-31Fix my brain fade in TRUNCATE triggers patch: can't release relcache refcountsTom Lane
2008-03-31Use error message wordings for permissions checks on .pgpass and SSL privateTom Lane
2008-03-31Fix a number of places that were making file-type tests infelicitously.Tom Lane
2008-03-29Revert my erroneous fix for Taiki Yamaguchi's DISTINCT MAX() bug.Tom Lane
2008-03-28Department of second thoughts: the rule that ORDER BY and DISTINCT areTom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane