summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-09-02Small code cleanup for recent UPDATE SET (values) patch.Bruce Momjian
2006-09-02Add UPDATE tab SET ROW (col, ...) = (val, ...) for updatingBruce Momjian
2006-09-02Change FETCH/MOVE to use int8.Bruce Momjian
2006-09-02Remove GUC_REPORT for new "server_version_num" GUC variable. AddedBruce Momjian
2006-09-02Apply a simple solution to the problem of making INSERT/UPDATE/DELETETom Lane
2006-09-02Add new variable "server_version_num", which is almost the same asBruce Momjian
2006-08-31Clean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSIONTom Lane
2006-08-31Repair interpretation of GB as MB.Peter Eisentraut
2006-08-31Attibution addition: Add Karel Zak also for COPY SELECT.Bruce Momjian
2006-08-31Correct attibution:Bruce Momjian
2006-08-30Extend COPY to support COPY (SELECT ...) TO ...Tom Lane
2006-08-30Update logging of prepare/execute syntax, per comments from Guillaume Smet.Bruce Momjian
2006-08-29Separate prepared statement and bind parameters with comma.Bruce Momjian
2006-08-29Fix mistypingTeodor Sigaev
2006-08-29Fix BUG #2594: Gin Indexes cause server to crash when it builds on empty tableTeodor Sigaev
2006-08-29Revert change to turn autovacuum on by default.Peter Eisentraut
2006-08-29Only call log_after_parse() if necessary.Bruce Momjian
2006-08-29Now bind displays prepare as detail, and execute displays prepare andBruce Momjian
2006-08-28Fix pgstat_report_waiting() to not dump core if called beforeTom Lane
2006-08-28Tweak trivial_subqueryscan() to consider a SubqueryScan's targetlistTom Lane
2006-08-28Turn autovacuum on by default. (stats_row_level is also on by default.)Peter Eisentraut
2006-08-27Add new return codes SPI_OK_INSERT_RETURNING etc to the SPI API.Tom Lane
2006-08-27Add some notes about why it's not a bug that RI_FKey_check callsTom Lane
2006-08-27Add a function GetLockConflicts() to lock.c to report xacts holdingTom Lane
2006-08-27Move xact.c's partial support for Lists of TransactionIds into pg_list.h.Tom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-08-24Add some debug logging code to AllocateFile's failure path to log theTom Lane
2006-08-24Optimize the case where a btree indexscan has current and mark positionsTom Lane
2006-08-22In new "invalid byte sequence" error hint, call it "error", notBruce Momjian
2006-08-22Add hint for "invalid byte sequence for encoding" error message,Bruce Momjian
2006-08-22Ooops, ldap fix for win32 broke the non-win32 case.Tom Lane
2006-08-21Fix encrypted-LDAP support so that it doesn't cause the server to failTom Lane
2006-08-21Minor code rearrangement to save a few cycles in RI_FKey_check whenTom Lane
2006-08-21Make the server track an 'XID epoch', that is, maintain higher-order bitsTom Lane
2006-08-21Fix all known problems with pg_dump's handling of serial sequencesTom Lane
2006-08-20Fix DROP OWNED BY to correctly consider the implicitly-deleted objects list forAlvaro Herrera
2006-08-19Suppress subquery pullup/pushdown when a subquery contains volatileTom Lane
2006-08-19Add a 'waiting' column to pg_stat_activity to carry the same informationTom Lane
2006-08-18Now that we've rearranged relation open to get a lock before touchingTom Lane
2006-08-17Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane
2006-08-17Fix an oversight in mergejoin planning: the planner would reject aTom Lane
2006-08-17Teach convert_subquery_pathkeys() to handle the case where theTom Lane
2006-08-16Put probes.o file in right directory, fixes dtrace compilationPeter Eisentraut
2006-08-16Seems some C compilers think 'restrict' is a fully reserved word.Tom Lane
2006-08-15Add a hack so that get_type_io_data() can work from bootstrap.c'sTom Lane
2006-08-15Add server support for "plugin" libraries that can be used for add-on tasksTom Lane
2006-08-14Cause '*' and 'foo.*' notations to mark the referenced RTE(s) asTom Lane
2006-08-14Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: weTom Lane
2006-08-14When executing a list of queries derived from rule expansion,Tom Lane
2006-08-14Remove hash_destroy calls in hash_create's failure paths. As noted byTom Lane