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
/
backend
/
optimizer
/
prep
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix bogus variable-mangling in security_barrier_replace_vars().
Tom Lane
2014-09-24
1
-1
/
+1
*
Fix Var handling for security barrier views
Stephen Frost
2014-08-26
1
-2
/
+4
*
Implement UPDATE tab SET (col1,col2,...) = (SELECT ...), ...
Tom Lane
2014-06-18
1
-0
/
+1
*
Avoid recursion when processing simple lists of AND'ed or OR'ed clauses.
Tom Lane
2014-06-16
2
-10
/
+9
*
pgindent run for 9.4
Bruce Momjian
2014-05-06
5
-65
/
+70
*
Improve planner to drop constant-NULL inputs of AND/OR where it's legal.
Tom Lane
2014-04-29
1
-12
/
+67
*
Make security barrier views automatically updatable
Stephen Frost
2014-04-12
3
-15
/
+513
*
Update copyright for 2014
Bruce Momjian
2014-01-07
4
-4
/
+4
*
Flatten join alias Vars before pulling up targetlist items from a subquery.
Tom Lane
2013-11-22
1
-0
/
+12
*
Support multi-argument UNNEST(), and TABLE() syntax for multiple functions.
Tom Lane
2013-11-21
1
-6
/
+3
*
Fix qual-clause-misplacement issues with pulled-up LATERAL subqueries.
Tom Lane
2013-08-19
1
-16
/
+130
*
Fix planner problems with LATERAL references in PlaceHolderVars.
Tom Lane
2013-08-17
1
-10
/
+34
*
Simplify query_planner's API by having it return the top-level RelOptInfo.
Tom Lane
2013-08-05
1
-9
/
+10
*
pgindent run for release 9.3
Bruce Momjian
2013-05-29
1
-13
/
+13
*
Support writable foreign tables.
Tom Lane
2013-03-10
1
-1
/
+2
*
Update copyrights for 2013
Bruce Momjian
2013-01-01
4
-4
/
+4
*
Get rid of COERCE_DONTCARE.
Tom Lane
2012-10-12
1
-1
/
+1
*
Fix PARAM_EXEC assignment mechanism to be safe in the presence of WITH.
Tom Lane
2012-09-05
2
-0
/
+11
*
Split tuple struct defs from htup.h to htup_details.h
Alvaro Herrera
2012-08-30
1
-0
/
+1
*
Split heapam_xlog.h from heapam.h
Alvaro Herrera
2012-08-28
1
-0
/
+1
*
Fix up planner infrastructure to support LATERAL properly.
Tom Lane
2012-08-26
2
-2
/
+7
*
Remove obsolete comment.
Tom Lane
2012-08-19
1
-3
/
+0
*
Another round of planner fixes for LATERAL.
Tom Lane
2012-08-18
1
-1
/
+65
*
More fixes for planner's handling of LATERAL.
Tom Lane
2012-08-12
1
-57
/
+160
*
Fix some issues with LATERAL(SELECT UNION ALL SELECT).
Tom Lane
2012-08-11
1
-7
/
+32
*
Implement SQL-standard LATERAL subqueries.
Tom Lane
2012-08-07
1
-0
/
+7
*
Replace int2/int4 in C code with int16/int32
Peter Eisentraut
2012-06-25
1
-1
/
+1
*
Run pgindent on 9.2 source tree in preparation for first 9.3
Bruce Momjian
2012-06-10
2
-11
/
+17
*
Revise parameterized-path mechanism to fix assorted issues.
Tom Lane
2012-04-19
1
-0
/
+3
*
Fix planner's handling of outer PlaceHolderVars within subqueries.
Tom Lane
2012-03-24
1
-3
/
+16
*
Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.
Tom Lane
2012-03-19
1
-4
/
+2
*
Revisit handling of UNION ALL subqueries with non-Var output columns.
Tom Lane
2012-03-16
1
-23
/
+13
*
Preserve column names in the execution-time tupledesc for a RowExpr.
Tom Lane
2012-02-14
1
-37
/
+61
*
Undo 8.4-era lobotomization of subquery pullup rules.
Tom Lane
2012-01-27
1
-69
/
+149
*
Update copyright notices for year 2012.
Bruce Momjian
2012-01-01
4
-4
/
+4
*
Add a security_barrier option for views.
Robert Haas
2011-12-22
1
-0
/
+2
*
Ensure that whole-row junk Vars are always of composite type.
Tom Lane
2011-11-27
1
-1
/
+2
*
Wrap appendrel member outputs in PlaceHolderVars in additional cases.
Tom Lane
2011-11-08
1
-13
/
+23
*
Rearrange planner to save the whole PlannerInfo (subroot) for a subquery.
Tom Lane
2011-09-03
1
-6
/
+24
*
Remove unnecessary #include references, per pgrminclude script.
Bruce Momjian
2011-09-01
3
-6
/
+0
*
Avoid creating PlaceHolderVars immediately within PlaceHolderVars.
Tom Lane
2011-08-09
1
-4
/
+16
*
Avoid listing ungrouped Vars in the targetlist of Agg-underneath-Window.
Tom Lane
2011-07-12
1
-0
/
+1
*
Fix thinko in previous patch for optimizing EXISTS-within-EXISTS.
Tom Lane
2011-06-20
1
-10
/
+16
*
Pgindent run before 9.1 beta2.
Bruce Momjian
2011-06-09
1
-3
/
+3
*
Fix pull_up_sublinks' failure to handle nested pull-up opportunities.
Tom Lane
2011-05-02
1
-3
/
+38
*
Improve cost estimation for aggregates and window functions.
Tom Lane
2011-04-24
1
-2
/
+2
*
Clean up collation processing in prepunion.c.
Tom Lane
2011-04-16
2
-36
/
+97
*
pgindent run before PG 9.1 beta 1.
Bruce Momjian
2011-04-10
4
-33
/
+34
*
Pass collation to makeConst() instead of looking it up internally.
Tom Lane
2011-03-25
2
-0
/
+4
*
Fix failure to propagate collation in negate_clause().
Tom Lane
2011-03-25
1
-0
/
+3
[next]