aboutsummaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAge
* Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway2005-04-07
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-06
* plpgsql does OUT parameters, as per my proposal a few weeks ago.Tom Lane2005-04-05
* First phase of OUT-parameters project. We can now define and use SQLTom Lane2005-03-31
* Add proallargtypes and proargmodes columns to pg_proc, as per my earlierTom Lane2005-03-29
* Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actuallyTom Lane2005-03-29
* Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set theTom Lane2005-03-29
* Add SPI_getnspname(), including documentation.Neil Conway2005-03-29
* Convert oidvector and int2vector into variable-length arrays. ThisTom Lane2005-03-29
* Remove dead push/pop rollback code. Vadim once planned to implementTom Lane2005-03-28
* Rethink the order of expression preprocessing: eval_const_expressionsTom Lane2005-03-28
* First steps towards index scans with heap access decoupled from indexTom Lane2005-03-27
* Eliminate duplicate hasnulls bit testing in index tuple access, andTom Lane2005-03-27
* Add a back-link from IndexOptInfo structs to their parent RelOptInfoTom Lane2005-03-27
* Expand the 'special index operator' machinery to handle special casesTom Lane2005-03-26
* Use 'cp' and 'chmod' in place of 'install' to install header files.Bruce Momjian2005-03-25
* Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane2005-03-25
* Fix resource owner code to generate catcache and relcache leak warningsTom Lane2005-03-25
* Add missing min/max parameters to DefineCustomIntVariable() andTom Lane2005-03-25
* Kerberos fixes from Magnus Hagander --- in theory Kerberos 5 authTom Lane2005-03-25
* array_map can't use the fn_extra field of the provided fcinfo struct asTom Lane2005-03-24
* Change Win32 O_SYNC method to O_DSYNC because that is what the methodBruce Momjian2005-03-24
* WAL must log CREATE and DROP DATABASE operations *without* using anyTom Lane2005-03-23
* Use InitFunctionCallInfoData() macro instead of MemSet in performanceTom Lane2005-03-22
* Create a routine PageIndexMultiDelete() that replaces a loop aroundTom Lane2005-03-22
* Convert index-related tuple handling routines from char 'n'/' ' to boolTom Lane2005-03-21
* Change the return value of HeapTupleSatisfiesUpdate() to be an enum,Neil Conway2005-03-20
* On Windows, use QueryPerformanceCounter instead of gettimeofday forTom Lane2005-03-20
* Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane2005-03-20
* Add temp_buffers GUC variable to allow users to determine the sizeTom Lane2005-03-19
* Need to reset local buffer pin counts, not only shared buffer pins,Tom Lane2005-03-18
* This patch moves some code for preprocessing FOR UPDATE fromNeil Conway2005-03-17
* Force initdb cause of encoding additions.Bruce Momjian2005-03-16
* Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane2005-03-16
* Add sprintf support, that were were missing.Bruce Momjian2005-03-16
* Prevent locale-aware handling of upper, lower, and initcap when theBruce Momjian2005-03-16
* Add support for Win1252 encoding.Bruce Momjian2005-03-14
* Avoid O(N^2) overhead in repeated nocachegetattr calls when columns ofTom Lane2005-03-14
* Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway2005-03-14
* Add missing identification comment, remove entirely inappropriate includeTom Lane2005-03-13
* Add fprintf() custom version to libpgport.Bruce Momjian2005-03-11
* Define snprintf() to call pg_snprintf() so our own snprintf-likeBruce Momjian2005-03-11
* Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane2005-03-10
* Add spinlock support for Itanium processor with Intel compiler.Bruce Momjian2005-03-10
* Refactor fork()-related code. We need to do various housekeeping tasksNeil Conway2005-03-10
* Adjust creation/destruction of TupleDesc data structure to reduce theTom Lane2005-03-07
* Rename canonical encodings, per Peter:Bruce Momjian2005-03-07
* Revise hash join code so that we can increase the number of batchesTom Lane2005-03-06
* Replace the BufMgrLock with separate locks on the lookup hashtable andTom Lane2005-03-04
* Implement max() and min() aggregates for array types. Patch from KojuNeil Conway2005-02-28