summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
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-04Have psql command 'help' suggest the use of \?, updated version.Bruce Momjian
2008-04-04Allow 'help' in psql to show \? help, for novice assistance.Bruce Momjian
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-01Support EXECUTE USING in plpgsql.Tom Lane
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-30Show database access privileges in psql's \l command. For \l+, also showTom Lane
2008-03-30Display incoming as well as outgoing foreign-key constraints in psql'sTom Lane
2008-03-29Improve description of \du and \dg, per suggestion fromTom Lane
2008-03-29Improve psql's tab completion to handle completing attribute names in casesTom 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
2008-03-27When we have successfully optimized a MIN or MAX aggregate into an indexscan,Tom Lane
2008-03-27Remove ipcclean utility command --- didn't work on all Unixes and onBruce Momjian
2008-03-27Sorry, copied wrong files.Michael Meskes
2008-03-27- Moved from PQsetdbLogin to PQconnectDB.Michael Meskes
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-26Include \password in the psql help.Magnus Hagander
2008-03-26Strengthen warnings about using pg_dump's -i option.Bruce Momjian
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-03-25added ECPGget_PGconn to exports.txtMichael Meskes
2008-03-24When a relation has been proven empty by constraint exclusion, propagate thatTom Lane
2008-03-24Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane
2008-03-24Fix various infelicities that have snuck into usage of errdetail() andTom Lane
2008-03-24Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane
2008-03-24Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane
2008-03-23Avoid a useless tuple copy within nodeMaterial. Neil ConwayTom Lane
2008-03-23Create a function quote_nullable(), which works the same as quote_literal()Tom Lane
2008-03-22Refactor to_char/to_date formatting code; primarily, replace DCH_processorTom Lane