summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Change the planner to allow indexscan qualification clauses to useTom Lane2005-06-134-25/+27
* Adjust lo_open() so that specifying INV_READ without INV_WRITE createsTom Lane2005-06-134-7/+15
* Separate predicate-testing code out of indxpath.c, making it a moduleTom Lane2005-06-102-2/+24
* Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM.Neil Conway2005-06-101-1/+2
* Quick hack to allow the outer query's tuple_fraction to be passed downTom Lane2005-06-101-1/+3
* If a LIMIT is applied to a UNION ALL query, plan each UNION arm asTom Lane2005-06-101-2/+3
* Avoid bare 'struct Node;' declaration --- provokes annoying warningsTom Lane2005-06-091-6/+6
* Please find attached a patch (diff -c against cvs HEAD) to add aBruce Momjian2005-06-091-1/+3
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-094-45/+28
* Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane2005-06-083-3/+18
* Remove grammar productions for prefix and postfix % and ^ operators,Tom Lane2005-06-081-3/+1
* Change WAL-logging scheme for multixacts to be more like regularTom Lane2005-06-085-11/+43
* Add a function lastval(), which returns the value returned by theNeil Conway2005-06-073-4/+7
* Modify XLogInsert API to make callers specify whether pages to be backedTom Lane2005-06-061-11/+29
* Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane2005-06-0615-31/+19
* Nab some low-hanging fruit: replace the planner's base_rel_list andTom Lane2005-06-061-7/+14
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-0516-138/+166
* Replace the parser's namespace tree (which formerly had the sameTom Lane2005-06-053-18/+27
* Allow kerberos name and username case sensitivity to be specified fromBruce Momjian2005-06-042-5/+7
* Change expandRTE() and ResolveNew() back to taking just the singleTom Lane2005-06-042-6/+5
* Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane2005-06-034-9/+15
* Push enable/disable of notify and catchup interrupts all the way downTom Lane2005-06-021-1/+3
* Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane2005-06-024-59/+115
* ParseComplexProjection should make use of expandRecordVariable so thatTom Lane2005-05-311-1/+3
* Document get_call_result_type() and friends; mark TypeGetTupleDesc()Tom Lane2005-05-301-6/+5
* Add support for NUMERIC ^ NUMERIC based on power(numeric, numeric).Bruce Momjian2005-05-302-3/+4
* When enqueueing after-row triggers for updates of a table with a foreignNeil Conway2005-05-301-2/+11
* Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway2005-05-301-2/+2
* Change the UNKNOWN type to have an internal representation matchingTom Lane2005-05-302-4/+4
* Improve LockAcquire API per my recent proposal. All error conditionsTom Lane2005-05-291-2/+11
* Remove typeidIsValid() checks in can_coerce_type(). These checksTom Lane2005-05-291-2/+1
* Modify hash_search() API to prevent future occurrences of the errorTom Lane2005-05-291-3/+2
* Arrange to cache fmgr lookup information for an index's access methodTom Lane2005-05-273-13/+31
* Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway2005-05-271-2/+2
* Adjust datetime parsing to be more robust. We now pass the length of theNeil Conway2005-05-261-2/+2
* Add parentheses to macros when args are used in computations. WithoutBruce Momjian2005-05-259-33/+33
* Put parentheses around use of macro arguments in FMODULO and TMODULO.Bruce Momjian2005-05-241-7/+7
* More macro cleanups for date/time.Bruce Momjian2005-05-231-1/+3
* Add datetime macros for constants, for clarity:Bruce Momjian2005-05-231-1/+6
* Teach the planner to remove SubqueryScan nodes from the plan if theyTom Lane2005-05-222-5/+10
* Add support for wal_fsync_writethrough for Darwin, and restructure theBruce Momjian2005-05-204-5/+17
* Implement md5(bytea), update regression tests and documentation. PatchNeil Conway2005-05-203-4/+7
* Factor out lock cleanup code that is needed in several places in lock.c.Tom Lane2005-05-191-2/+2
* Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane2005-05-197-30/+51
* Extend the pg_locks system view so that it can fully display all lockTom Lane2005-05-172-4/+4
* Cleanup GiST header files. Since GiST extensions are often written asNeil Conway2005-05-172-117/+125
* GiST improvements:Neil Conway2005-05-171-12/+23
* Rename Rendezvous to Bonjour to match OS/X renaming.Bruce Momjian2005-05-152-4/+4
* Minor refactoring to eliminate duplicate code and make startup aTom Lane2005-05-141-1/+5
* Revise nodeMergejoin in light of example provided by Guillaume Smet.Tom Lane2005-05-133-35/+34