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
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
Disallow LATERAL references to the target table of an UPDATE/DELETE.
Tom Lane
2014-01-11
2
-36
/
+25
*
Add another regression test cross-checking operator and function comments.
Tom Lane
2014-01-11
2
-6
/
+52
*
Fix "cannot accept a set" error when only some arms of a CASE return a set.
Tom Lane
2014-01-08
2
-0
/
+23
*
Update copyright for 2014
Bruce Momjian
2014-01-07
12
-12
/
+12
*
Fix LATERAL references to target table of UPDATE/DELETE.
Tom Lane
2014-01-07
2
-0
/
+66
*
Add more use of psprintf()
Peter Eisentraut
2014-01-06
1
-5
/
+1
*
Extract restriction OR clauses whether or not they are indexable.
Tom Lane
2013-12-30
2
-0
/
+59
*
Support ordered-set (WITHIN GROUP) aggregates.
Tom Lane
2013-12-23
6
-28
/
+462
*
isolationtester: Ensure stderr is unbuffered, too
Alvaro Herrera
2013-12-19
1
-1
/
+5
*
Make stdout unbuffered
Alvaro Herrera
2013-12-19
1
-8
/
+3
*
Don't ignore tuple locks propagated by our updates
Alvaro Herrera
2013-12-18
3
-0
/
+148
*
Allow empty target list in SELECT.
Tom Lane
2013-12-14
2
-24
/
+14
*
Fix inherited UPDATE/DELETE with UNION ALL subqueries.
Tom Lane
2013-12-14
2
-4
/
+28
*
Improve EXPLAIN to print the grouping columns in Agg and Group nodes.
Tom Lane
2013-12-12
4
-12
/
+20
*
Regression tests for SCHEMA commands
Simon Riggs
2013-12-11
4
-14
/
+81
*
Regression tests for ALTER TABLESPACE RENAME,OWNER
Simon Riggs
2013-12-11
2
-2
/
+27
*
Tweak placement of explicit ANALYZE commands in the regression tests.
Tom Lane
2013-12-11
12
-12
/
+50
*
Add table name to VACUUM statement in matview.c.
Kevin Grittner
2013-12-11
2
-2
/
+2
*
Fix possible crash with nested SubLinks.
Tom Lane
2013-12-10
2
-0
/
+40
*
Rename TABLE() to ROWS FROM().
Noah Misch
2013-12-10
2
-71
/
+71
*
Fix improper abort during update chain locking
Alvaro Herrera
2013-12-05
4
-0
/
+301
*
Avoid resetting Xmax when it's a multi with an aborted update
Alvaro Herrera
2013-12-05
1
-8
/
+5
*
build: pass EXTRA_REGRESS_OPTS to secondary regression tests
Bruce Momjian
2013-12-04
1
-4
/
+4
*
Fix crash in assign_collations_walker for EXISTS with empty SELECT list.
Tom Lane
2013-12-02
2
-0
/
+16
*
Don't TransactionIdDidAbort in HeapTupleGetUpdateXid
Alvaro Herrera
2013-11-29
1
-5
/
+8
*
Refine our definition of what constitutes a system relation.
Robert Haas
2013-11-28
2
-0
/
+62
*
Implement information_schema.parameters.parameter_default column
Peter Eisentraut
2013-11-26
2
-1
/
+56
*
Change SET LOCAL/CONSTRAINTS/TRANSACTION and ABORT behavior
Bruce Momjian
2013-11-25
2
-3
/
+3
*
Flatten join alias Vars before pulling up targetlist items from a subquery.
Tom Lane
2013-11-22
2
-0
/
+83
*
Support multi-argument UNNEST(), and TABLE() syntax for multiple functions.
Tom Lane
2013-11-21
2
-280
/
+763
*
Replace appendPQExpBuffer(..., <constant>) with appendPQExpBufferStr
Heikki Linnakangas
2013-11-18
1
-1
/
+1
*
Add make_date() and make_time() functions.
Tom Lane
2013-11-17
2
-0
/
+37
*
Improve performance of numeric sum(), avg(), stddev(), variance(), etc.
Tom Lane
2013-11-16
2
-0
/
+73
*
Allow aggregates to provide estimates of their transition state data size.
Tom Lane
2013-11-16
4
-4
/
+4
*
Compute correct em_nullable_relids in get_eclass_for_sort_expr().
Tom Lane
2013-11-15
2
-0
/
+42
*
Prevent leakage of cached plans and execution trees in plpgsql DO blocks.
Tom Lane
2013-11-15
2
-0
/
+49
*
Fix buffer overrun in isolation test program.
Kevin Grittner
2013-11-15
1
-1
/
+9
*
Add a regression test case for \d on an index.
Tom Lane
2013-11-14
2
-0
/
+18
*
Free ignorelist after each regression test schedule.
Kevin Grittner
2013-11-13
1
-0
/
+2
*
Try again to make pg_isolation_regress work its build directory.
Robert Haas
2013-11-12
1
-7
/
+26
*
Fix ruleutils pretty-printing to not generate trailing whitespace.
Tom Lane
2013-11-11
8
-643
/
+643
*
Re-allow duplicate aliases within aliased JOINs.
Tom Lane
2013-11-11
2
-0
/
+36
*
Fix whitespace issues found by git diff --check, add gitattributes
Peter Eisentraut
2013-11-10
12
-41
/
+40
*
Fix pg_isolation_regress to work outside its build directory.
Robert Haas
2013-11-08
5
-6
/
+21
*
Add the notion of REPLICA IDENTITY for a table.
Robert Haas
2013-11-08
4
-1
/
+264
*
Make contain_volatile_functions/contain_mutable_functions look into SubLinks.
Tom Lane
2013-11-08
2
-0
/
+80
*
Prevent display of dropped columns in row constraint violation messages.
Tom Lane
2013-11-07
2
-0
/
+23
*
Fix generation of MergeAppend plans for optimized min/max on expressions.
Tom Lane
2013-11-07
2
-0
/
+62
*
Support default arguments and named-argument notation for window functions.
Tom Lane
2013-11-06
2
-0
/
+45
*
Fix breakage of MV column name list usage.
Kevin Grittner
2013-11-04
2
-0
/
+36
[next]