index
:
delta/postgresql.git
REL2_0B
REL6_4
REL6_5_PATCHES
REL7_0_PATCHES
REL7_1_STABLE
REL7_2_STABLE
REL7_3_STABLE
REL7_4_STABLE
REL8_0_STABLE
REL8_1_STABLE
REL8_2_STABLE
REL8_3_STABLE
REL8_4_STABLE
REL8_5_ALPHA1_BRANCH
REL8_5_ALPHA2_BRANCH
REL8_5_ALPHA3_BRANCH
REL9_0_ALPHA4_BRANCH
REL9_0_ALPHA5_BRANCH
REL9_0_STABLE
REL9_1_STABLE
REL9_2_STABLE
REL9_3_STABLE
REL9_4_STABLE
REL9_5_STABLE
REL9_6_STABLE
REL_10_STABLE
REL_11_STABLE
REL_12_STABLE
REL_13_STABLE
REL_14_STABLE
REL_15_STABLE
Release_1_0_3
WIN32_DEV
ecpg_big_bison
master
git.postgresql.org: git/postgresql.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
include
/
nodes
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add error location info to ResTarget parse nodes. Allows error cursor to be ...
Tom Lane
2006-03-23
1
-1
/
+2
*
Clean up representation of function RTEs for functions returning RECORD.
Tom Lane
2006-03-16
1
-5
/
+9
*
Improve parser so that we can show an error cursor position for errors
Tom Lane
2006-03-14
2
-7
/
+18
*
Remove the stub support we had for UNION JOIN; per discussion, this is
Tom Lane
2006-03-07
1
-8
/
+1
*
Update copyright for 2006. Update scripts.
Bruce Momjian
2006-03-05
16
-32
/
+32
*
Add CASCADE option to TRUNCATE. Joachim Wieland
Tom Lane
2006-03-03
1
-1
/
+2
*
Teach nodeSort and nodeMaterial to optimize out unnecessary overhead
Tom Lane
2006-02-28
1
-2
/
+4
*
Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT is
Neil Conway
2006-02-19
1
-18
/
+27
*
DROP IF EXISTS for ROLE/USER/GROUP
Andrew Dunstan
2006-02-04
1
-1
/
+2
*
Restructure planner's handling of inheritance. Rather than processing
Tom Lane
2006-01-31
2
-23
/
+116
*
Add GRANT ON SEQUENCE syntax to support sequence-only permissions.
Bruce Momjian
2006-01-21
1
-2
/
+3
*
Trim an obsolete comment: it is no longer relevant that "SELECT" was
Neil Conway
2006-01-01
1
-4
/
+4
*
Implement SQL-compliant treatment of row comparisons for < <= > >= cases
Tom Lane
2005-12-28
4
-47
/
+101
*
Teach planner how to rearrange join order for some classes of OUTER JOIN.
Tom Lane
2005-12-20
3
-18
/
+41
*
Spell "explicitly" correctly, per Simon.
Tom Lane
2005-12-07
1
-3
/
+3
*
Adjust scan plan nodes to avoid getting an extra AccessShareLock on a
Tom Lane
2005-12-02
1
-1
/
+10
*
Tweak hash join code to use an additional heuristic for deciding whether
Tom Lane
2005-11-28
1
-1
/
+3
*
Change the parser to translate "foo [NOT] IN (expression-list)" to
Tom Lane
2005-11-28
1
-2
/
+3
*
Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so that
Tom Lane
2005-11-26
3
-10
/
+14
*
Change seqscan logic so that we check visibility of all tuples on a page
Tom Lane
2005-11-26
1
-7
/
+1
*
Teach planner and executor to handle ScalarArrayOpExpr as an indexable
Tom Lane
2005-11-25
1
-11
/
+38
*
Re-run pgindent, fixing a problem where comment lines after a blank
Bruce Momjian
2005-11-22
4
-25
/
+25
*
DROP DATABASE IF EXISTS variant
Andrew Dunstan
2005-11-22
1
-1
/
+2
*
Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate the
Alvaro Herrera
2005-11-21
2
-2
/
+24
*
DROP objecttype IF EXISTS for the following objects:
Andrew Dunstan
2005-11-19
1
-1
/
+2
*
Restore the former RestrictInfo field valid_everywhere (but invert the flag
Tom Lane
2005-11-14
1
-1
/
+8
*
Prevent ExecInsert() and ExecUpdate() from scribbling on the result tuple
Tom Lane
2005-11-14
1
-1
/
+3
*
Adjust parser so that POSTQUEL-style implicit RTEs are stored with
Tom Lane
2005-10-26
1
-9
/
+7
*
Standard pgindent run for 8.1.
Bruce Momjian
2005-10-15
9
-256
/
+224
*
The original patch to avoid building a hash join's hashtable when the
Tom Lane
2005-09-25
1
-2
/
+3
*
Tweak nodeBitmapAnd to stop evaluating sub-plan scans if it finds it's
Tom Lane
2005-08-28
1
-1
/
+3
*
Change the division of labor between grouping_planner and query_planner
Tom Lane
2005-08-27
1
-1
/
+4
*
Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump to
Tom Lane
2005-08-23
1
-4
/
+10
*
Add NOWAIT option to SELECT FOR UPDATE/SHARE.
Tom Lane
2005-08-01
3
-7
/
+24
*
Add ALTER object SET SCHEMA capability for a limited but useful set of
Tom Lane
2005-08-01
2
-4
/
+20
*
Add per-user and per-database connection limit options.
Tom Lane
2005-07-31
2
-2
/
+10
*
Fix a bunch of bad interactions between partial indexes and the new
Tom Lane
2005-07-28
1
-1
/
+11
*
Add a role property 'rolinherit' which, when false, denotes that the role
Tom Lane
2005-07-26
1
-1
/
+14
*
Simple constraint exclusion. For now, only child tables of inheritance
Tom Lane
2005-07-23
1
-5
/
+15
*
Teach planner about some cases where a restriction clause can be
Tom Lane
2005-07-02
1
-7
/
+11
*
Bring syntax of role-related commands into SQL compliance. To avoid
Tom Lane
2005-06-28
1
-4
/
+4
*
Replace pg_shadow and pg_group by new role-capable catalogs pg_authid
Tom Lane
2005-06-28
2
-54
/
+43
*
Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule
Tom Lane
2005-06-26
3
-3
/
+33
*
Make REINDEX DATABASE do what one would expect, namely reindex all indexes
Tom Lane
2005-06-22
1
-3
/
+3
*
Avoid WAL-logging individual tuple insertions during CREATE TABLE AS
Tom Lane
2005-06-20
1
-1
/
+3
*
Two-phase commit. Original patch by Heikki Linnakangas, with additional
Tom Lane
2005-06-17
1
-2
/
+6
*
Change the implementation of hash join to attempt to avoid unnecessary
Neil Conway
2005-06-15
1
-1
/
+2
*
Change the planner to allow indexscan qualification clauses to use
Tom Lane
2005-06-13
1
-1
/
+2
*
Quick hack to allow the outer query's tuple_fraction to be passed down
Tom Lane
2005-06-10
1
-1
/
+3
*
Simplify the planner's join clause management by storing join clauses
Tom Lane
2005-06-09
2
-39
/
+21
[next]