summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* This patch fixes a bunch of spelling mistakes in comments throughout theTom Lane2003-03-1024-47/+47
* Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane2003-03-1010-59/+59
* tuplestore_donestoring() isn't needed anymore, but provide a no-opTom Lane2003-03-091-1/+4
* Revise tuplestore and nodeMaterial so that we don't have to read theTom Lane2003-03-092-13/+11
* Tweak dependency code to suppress NOTICEs generated by new method forTom Lane2003-03-061-2/+3
* Use poll(2) in preference to select(2), if available. This solvesTom Lane2003-03-061-4/+13
* Add code to dump contents of free space map into $PGDATA/global/pg_fsm.cacheTom Lane2003-03-061-1/+4
* Turns out new IN implementation has got some problems in an UPDATE orTom Lane2003-03-051-2/+2
* Reimplement free-space-map management as per recent discussions.Tom Lane2003-03-041-7/+15
* Correct/edit comments for geometric operators. No change except toTom Lane2003-03-031-46/+46
* During VACUUM FULL, truncate off any deletable pages that are at theTom Lane2003-02-241-2/+3
* btree page recycling can be done as soon as page's next-xact label isTom Lane2003-02-231-1/+2
* Adjust btbulkdelete logic so that only one WAL record is issued whileTom Lane2003-02-231-5/+10
* Improve coding of log_heap_clean() and heap_xlog_clean().Tom Lane2003-02-231-2/+2
* First cut at recycling space in btree indexes. Still some rough edgesTom Lane2003-02-232-5/+9
* Simplify timezone-handling code per proposal to pghackers: get rid ofTom Lane2003-02-221-7/+3
* More infrastructure for btree compaction project. Tree-traversal codeTom Lane2003-02-226-29/+54
* Make btree index structure adjustments and WAL logging changes needed toTom Lane2003-02-213-121/+219
* Fix timestamptz_in so that parsing of 'now'::timestamptz gives rightTom Lane2003-02-201-2/+2
* Back out LOCKTAG changes by Rod Taylor, pending code review. Sorry.Bruce Momjian2003-02-192-9/+4
* Fix for GUC client_encoding variable not being handledTatsuo Ishii2003-02-191-1/+2
* Here's the patch I promised over on HACKERS - it alters theBruce Momjian2003-02-191-1/+10
* - Modifies LOCKTAG to include a 'classId'. Relation receive a classId ofBruce Momjian2003-02-192-4/+9
* The following patches eliminate the overflows in the j2date() and date2j()Bruce Momjian2003-02-191-2/+2
* Rename 'holder' references to 'proclock' for PROCLOCK references, forBruce Momjian2003-02-182-21/+22
* COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane2003-02-165-8/+41
* Teach planner how to propagate pathkeys from sub-SELECTs in FROM up toTom Lane2003-02-153-6/+6
* Update FAQ's in head and 7.3.X.Bruce Momjian2003-02-141-1/+7
* [ Revert patch ]Bruce Momjian2003-02-131-2/+2
* This trivial patch removes the usage of some old statistics code that noBruce Momjian2003-02-131-8/+1
* The "random" regression test uses a function called oidrand(), whichBruce Momjian2003-02-133-13/+4
* Code for WITHOUT OIDS.Bruce Momjian2003-02-132-3/+6
* > =================================================================Bruce Momjian2003-02-131-2/+2
* Get rid of last few vestiges of parsetree dependency on grammar tokenTom Lane2003-02-102-16/+56
* Detect case where an outer join can be reduced to a plain inner joinTom Lane2003-02-091-2/+3
* Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane2003-02-093-34/+46
* Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane2003-02-095-17/+25
* Replace planner's representation of relation sets, per pghackers discussion.Tom Lane2003-02-086-40/+120
* Revise mechanism for getting rid of temp tables at backend shutdown.Tom Lane2003-02-071-1/+3
* Create a GUC variable REGEX_FLAVOR to control the type of regularTom Lane2003-02-061-1/+3
* Replace regular expression package with Henry Spencer's latest versionTom Lane2003-02-058-767/+632
* Minor code cleanup: remove no-longer-useful pull_subplans() function,Tom Lane2003-02-041-3/+2
* Determine the set of constraints applied to a domain at executorTom Lane2003-02-037-37/+57
* Tweak planner and executor to avoid doing ExecProject() in table scanTom Lane2003-02-033-7/+7
* Implement EXPLAIN EXECUTE. By Neil Conway, with some kibitzing fromTom Lane2003-02-022-6/+8
* Repair array subscript overrun identified by Yichen Xie. Reduce theTom Lane2003-01-291-2/+2
* Extend join-selectivity API (oprjoin interface) so that join type isTom Lane2003-01-285-30/+34
* Upgrade cost estimation for joins, per discussion with Bradley Baetz.Tom Lane2003-01-272-14/+6
* Allow the planner to collapse explicit inner JOINs together, rather thanTom Lane2003-01-252-8/+6
* Where available, use utime() or utimes() to update the file mod timeTom Lane2003-01-252-2/+12