| Commit message (Expand) | Author | Age | Files | Lines |
| * | Determine the set of constraints applied to a domain at executor | Tom Lane | 2003-02-03 | 1 | -17/+16 |
| * | Grant options, and cascading revoke. Grant options are allowed only for | Peter Eisentraut | 2003-01-23 | 1 | -1/+3 |
| * | IN clauses appearing at top level of WHERE can now be handled as joins. | Tom Lane | 2003-01-20 | 1 | -4/+22 |
| * | Allow merge and hash joins to occur on arbitrary expressions (anything not | Tom Lane | 2003-01-15 | 1 | -1/+3 |
| * | Further tweaking of parsetree & plantree representation of SubLinks. | Tom Lane | 2003-01-10 | 1 | -4/+7 |
| * | Adjust parser so that 'x NOT IN (subselect)' is converted to | Tom Lane | 2003-01-09 | 1 | -3/+4 |
| * | Clean up plantree representation of SubPlan-s --- SubLink does not appear | Tom Lane | 2002-12-14 | 1 | -9/+10 |
| * | Phase 3 of read-only-plans project: ExecInitExpr now builds expression | Tom Lane | 2002-12-13 | 1 | -11/+1 |
| * | Preliminary code review for domain CHECK constraints patch: add documentation, | Tom Lane | 2002-12-12 | 1 | -12/+1 |
| * | Phase 2 of read-only-plans project: restructure expression-tree nodes | Tom Lane | 2002-12-12 | 1 | -227/+283 |
| * | Re-addd Rod's ALTER DOMAIN patch. | Bruce Momjian | 2002-12-06 | 1 | -1/+18 |
| * | Back out ALTER DOMAIN patch until missing file appears. | Bruce Momjian | 2002-12-06 | 1 | -18/+1 |
| * | ALTER DOMAIN .. SET / DROP NOT NULL | Bruce Momjian | 2002-12-06 | 1 | -1/+18 |
| * | Phase 1 of read-only-plans project: cause executor state nodes to point | Tom Lane | 2002-12-05 | 1 | -429/+37 |
| * | Be more realistic about plans involving Materialize nodes: take their | Tom Lane | 2002-11-30 | 1 | -4/+28 |
| * | Upgrade planner and executor to allow multiple hash keys for a hash join, | Tom Lane | 2002-11-30 | 1 | -4/+3 |
| * | Remove unused constisset and constiscast fields of Const nodes. Clean | Tom Lane | 2002-11-25 | 1 | -3/+1 |
| * | Restructure the code in copyfuncs and equalfuncs to put much heavier | Tom Lane | 2002-11-25 | 1 | -1075/+874 |
| * | Restructure planning of nestloop inner indexscans so that the set of usable | Tom Lane | 2002-11-24 | 1 | -4/+29 |
| * | This patch implements FOR EACH STATEMENT triggers, per my email to | Bruce Momjian | 2002-11-23 | 1 | -9/+1 |
| * | Add an at-least-marginally-plausible method of estimating the number | Tom Lane | 2002-11-19 | 1 | -3/+3 |
| * | Add DOMAIN check constraints. | Bruce Momjian | 2002-11-15 | 1 | -1/+31 |
| * | Code review for ON COMMIT patch. Make the actual on-commit action happen | Tom Lane | 2002-11-11 | 1 | -1/+2 |
| * | Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to do | Tom Lane | 2002-11-06 | 1 | -1/+2 |
| * | First phase of implementing hash-based grouping/aggregation. An AGG plan | Tom Lane | 2002-11-06 | 1 | -3/+38 |
| * | Adjust handling of command status strings in the presence of rules, | Tom Lane | 2002-10-14 | 1 | -2/+2 |
| * | Replace pg_attribute.attisinherited with attislocal and attinhcount | Tom Lane | 2002-09-22 | 1 | -2/+3 |
| * | Extend pg_cast castimplicit column to a three-way value; this allows us | Tom Lane | 2002-09-18 | 1 | -2/+4 |
| * | pgindent run. | Bruce Momjian | 2002-09-04 | 1 | -6/+6 |
| * | CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE. | Tom Lane | 2002-09-02 | 1 | -1/+3 |
| * | Code review for domain-constraints patch. Use a new ConstraintTest node | Tom Lane | 2002-08-31 | 1 | -17/+21 |
| * | Add attisinherited column to pg_attribute; use it to guard against | Tom Lane | 2002-08-30 | 1 | -1/+2 |
| * | PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing | Tom Lane | 2002-08-27 | 1 | -1/+45 |
| * | Modify array operations to include array's element type OID in the | Tom Lane | 2002-08-26 | 1 | -2/+3 |
| * | The cstring datatype can now be copied, passed around, etc. The typlen | Tom Lane | 2002-08-24 | 1 | -11/+6 |
| * | Remove Ident nodetype in favor of using String nodes; this fixes some | Tom Lane | 2002-08-19 | 1 | -39/+1 |
| * | Clean up leftover bugs from recent COPY feature patch --- missed | Tom Lane | 2002-08-19 | 1 | -1/+2 |
| * | Add missing copyfuncs/equalfuncs entries, including T_Null which has | Tom Lane | 2002-08-19 | 1 | -2/+76 |
| * | Tom Lane wrote: | Bruce Momjian | 2002-08-15 | 1 | -1/+15 |
| * | Attached are two patches to implement and document anonymous composite | Bruce Momjian | 2002-08-04 | 1 | -1/+3 |
| * | The attached patch implements START TRANSACTION, per SQL99. The | Bruce Momjian | 2002-08-04 | 1 | -1/+2 |
| * | Implement CREATE/DROP OPERATOR CLASS. Work still remains: need more | Tom Lane | 2002-07-29 | 1 | -1/+53 |
| * | Remove unused system table columns: | Peter Eisentraut | 2002-07-24 | 1 | -3/+1 |
| * | Back out BETWEEN node patch, was causing initdb failure. | Bruce Momjian | 2002-07-18 | 1 | -30/+1 |
| * | Finished the Between patch Christopher started. | Bruce Momjian | 2002-07-18 | 1 | -1/+30 |
| * | Add more dependency insertions --- this completes the basic pg_depend | Tom Lane | 2002-07-16 | 1 | -1/+2 |
| * | Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. | Tom Lane | 2002-07-12 | 1 | -4/+6 |
| * | First phase of applying Rod Taylor's pg_depend patch. This just adds | Tom Lane | 2002-07-01 | 1 | -1/+6 |
| * | Update copyright to 2002. | Bruce Momjian | 2002-06-20 | 1 | -2/+2 |
| * | Improve COPY syntax to use WITH clause, keep backward compatibility. | Bruce Momjian | 2002-06-20 | 1 | -8/+3 |