summaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAgeFilesLines
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-224-11/+19
* Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane2002-09-185-13/+44
* pgindent run.Bruce Momjian2002-09-045-42/+44
* Remove sys/types.h in files that include postgres.h, and hence c.h,Bruce Momjian2002-09-021-2/+1
* CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.Tom Lane2002-09-022-2/+8
* Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane2002-08-314-22/+93
* Add attisinherited column to pg_attribute; use it to guard againstTom Lane2002-08-304-5/+13
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-291-5/+5
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-272-2/+92
* Modify array operations to include array's element type OID in theTom Lane2002-08-264-17/+28
* The cstring datatype can now be copied, passed around, etc. The typlenTom Lane2002-08-241-11/+6
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-193-107/+3
* Clean up leftover bugs from recent COPY feature patch --- missedTom Lane2002-08-192-2/+5
* Add missing copyfuncs/equalfuncs entries, including T_Null which hasTom Lane2002-08-192-3/+137
* Tom Lane wrote:Bruce Momjian2002-08-152-2/+30
* > create view pg_locks as select l.relation, l.database, l.backendpid,Bruce Momjian2002-08-102-3/+81
* Fix merge failures for anonymous-type patch. From Joe Conway.Tom Lane2002-08-041-5/+4
* Fix compile failures for FRS composite tyhpe patch until Joe can fix it.Bruce Momjian2002-08-041-2/+3
* Attached are two patches to implement and document anonymous compositeBruce Momjian2002-08-044-4/+16
* The attached patch implements START TRANSACTION, per SQL99. TheBruce Momjian2002-08-042-2/+5
* Implement CREATE/DROP OPERATOR CLASS. Work still remains: need moreTom Lane2002-07-292-2/+111
* Remove unused system table columns:Peter Eisentraut2002-07-242-6/+2
* Back out BETWEEN node patch, was causing initdb failure.Bruce Momjian2002-07-184-147/+4
* Finished the Between patch Christopher started.Bruce Momjian2002-07-184-4/+147
* Add more dependency insertions --- this completes the basic pg_dependTom Lane2002-07-163-3/+8
* Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane2002-07-123-15/+25
* Implement the IS DISTINCT FROM operator per SQL99.Thomas G. Lockhart2002-07-042-2/+7
* First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane2002-07-012-2/+17
* Update copyright to 2002.Bruce Momjian2002-06-2010-20/+20
* Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian2002-06-202-17/+6
* Change CREATE DATABASE to use DefElem instead of constructing structureBruce Momjian2002-06-182-16/+4
* Add optional "validator" function to languages that can validate thePeter Eisentraut2002-05-222-2/+5
* Extend syntax of CREATE FUNCTION to resemble SQL99.Peter Eisentraut2002-05-172-16/+13
* Merge the last few variable.c configuration variables into the genericTom Lane2002-05-172-2/+5
* Fix typo in _copyAlterUserSetStmt.Tom Lane2002-05-131-2/+2
* Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane2002-05-125-70/+35
* First pass at set-returning-functions in FROM, by Joe Conway withTom Lane2002-05-125-18/+139
* Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane2002-04-284-48/+11
* Attached is a patch for ALTER TRIGGER RENAME per the above thread. IBruce Momjian2002-04-242-5/+8
* Rule names are now unique per-relation, rather than unique globally.Tom Lane2002-04-182-14/+17
* Opclasses live in namespaces. I also took the opportunity to createTom Lane2002-04-173-8/+7
* Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane2002-04-164-13/+44
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-114-23/+11
* Functions live in namespaces. Qualified function names work, egTom Lane2002-04-094-34/+58
* Add INSERT(..., DEFAULT, ).Bruce Momjian2002-04-052-2/+23
* pg_type has a typnamespace column; system now supports creating typesTom Lane2002-03-294-17/+38
* EXPLAIN output now comes out as a query result, not a NOTICE message.Tom Lane2002-03-241-26/+128
* A little further progress on schemas: push down RangeVars intoTom Lane2002-03-226-100/+105
* First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane2002-03-217-262/+455
* Code review for DOMAIN patch.Tom Lane2002-03-203-13/+22