summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-12-01Change planner to use the current true disk file size as its estimate ofTom Lane
2004-11-26RelOptInfo.pages should really be declared as BlockNumber, not long.Tom Lane
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-10-27Trivial fix: clarify a comment.Neil Conway
2004-10-07Fix problems with SQL functions returning rowtypes that have droppedTom Lane
2004-09-27A few minor list-related cleanups:Neil Conway
2004-09-16Add some marginal tweaks to eliminate memory leakages associated withTom Lane
2004-09-14Make pltcl work on Win32. Magnus HaganderTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-20Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
2004-08-02Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane
2004-08-02Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane
2004-07-27Replace nested-BEGIN syntax for subtransactions with spec-compliantTom Lane
2004-07-12Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane
2004-07-12The outer #define was forgotten. Attached patch adds it; please apply.Bruce Momjian
2004-07-11ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-06-05Make the world very nearly safe for composite-type columns in tables.Tom Lane
2004-06-02OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian
2004-06-01FastList is history, yay.Tom Lane
2004-06-01Desultory de-FastList-ification. RelOptInfo.reltargetlist is back toTom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26A couple other cosmetic cleanups in new List stuff.Tom Lane
2004-05-26This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-05-06Rewrite nodeRead() in a less obfuscated fashion, per discussion withTom Lane
2004-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane
2004-04-25Remove the last traces of Joe Hellerstein's "xfunc" optimization. PatchNeil Conway
2004-04-01Replace TupleTableSlot convention for whole-row variables and functionTom Lane
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane
2004-03-17Replace the switching function ExecEvalExpr() with a macro that jumpsTom Lane
2004-03-14Tweak planner so that index expressions and predicates are matched toTom Lane
2004-03-11Add NOWAIT option to LOCK commandTatsuo Ishii
2004-02-28Remove unneeded indxqual field in IndexScanState, and the useless workTom Lane
2004-01-22Fix oversight in optimization that avoids an unnecessary projection stepTom Lane
2004-01-14Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane
2004-01-10Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway
2004-01-07Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-06Instead of rechecking lossy index operators by putting them into theTom Lane
2004-01-05Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane
2004-01-05Improve UniquePath logic to detect the case where the input is alreadyTom Lane