summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-20Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian
2002-06-18Change CREATE DATABASE to use DefElem instead of constructing structureBruce Momjian
2002-05-22Add optional "validator" function to languages that can validate thePeter Eisentraut
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-05-17Extend syntax of CREATE FUNCTION to resemble SQL99.Peter Eisentraut
2002-05-17Merge the last few variable.c configuration variables into the genericTom Lane
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-04-28Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane
2002-04-24Attached is a patch for ALTER TRIGGER RENAME per the above thread. IBruce Momjian
2002-04-21Restructure AclItem representation so that we can have more than eightTom Lane
2002-04-18Rule names are now unique per-relation, rather than unique globally.Tom Lane
2002-04-17Opclasses live in namespaces. I also took the opportunity to createTom Lane
2002-04-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane
2002-04-11Restructure representation of aggregate functions so that they have pg_procTom Lane
2002-04-09Functions live in namespaces. Qualified function names work, egTom Lane
2002-04-05Add INSERT(..., DEFAULT, ).Bruce Momjian
2002-04-01ALTER TABLE SET/DROP NOT NULL, from Christopher Kings-Lynne.Tom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-24EXPLAIN output now comes out as a query result, not a NOTICE message.Tom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-20Code review for DOMAIN patch.Tom Lane
2002-03-19Add DOMAIN support. Includes manual pages and regression tests, fromBruce Momjian
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2002-03-08Fix copying/equality-check bugs in GrantStmt and ConstraintsSetStmt,Tom Lane
2002-03-07Back out domain patch until it works properly.Bruce Momjian
2002-03-06Ok. Updated patch attached.Bruce Momjian
2002-03-05I attach a version of my toast-slicing patch, against current CVSBruce Momjian
2002-03-01User and database-specific session defaults for run-time configurationPeter Eisentraut
2002-03-01Second thoughts dept: arrange to cache mergejoin scan selectivityTom Lane
2002-02-26Restructure command-completion-report code so that there is just oneTom Lane
2002-02-24Add OWNER option to CREATE DATABASE, so superusers can create databasesTom Lane
2002-02-18Privileges on functions and procedural languagesPeter Eisentraut
2001-11-21Spell 'precedes', 'preceding' correctly in various places.Tom Lane
2001-11-05New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian
2001-11-05CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column namesTom Lane
2001-10-28Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-10-18Accept an INTERVAL argument for SET TIME ZONE per SQL99.Thomas G. Lockhart
2001-10-12Break transformCreateStmt() into multiple routines and makeTom Lane
2001-10-02Add CREATE OR REPLACE FUNCTION syntax to allow replacing a functionTom Lane
2001-09-29Keep the contents of ItemPointerData not the pointers so thatHiroshi Inoue
2001-09-18EXPLAIN ANALYZE feature to measure and show actual runtimes and tupleTom Lane
2001-08-26Transaction IDs wrap around, per my proposal of 13-Aug-01. MoreTom Lane
2001-08-21Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane
2001-08-16Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-typeTom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane