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
/
executor
/
nodeModifyTable.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Centralize executor-related partitioning code.
Robert Haas
2017-11-15
1
-0
/
+1
*
Use ResultRelInfo ** rather than ResultRelInfo * for tuple routing.
Robert Haas
2017-10-12
1
-31
/
+43
*
Fix SQL-spec incompatibilities in new transition table feature.
Tom Lane
2017-09-16
1
-20
/
+37
*
Quick-hack fix for foreign key cascade vs triggers with transition tables.
Tom Lane
2017-09-10
1
-2
/
+8
*
Even if some partitions are foreign, allow tuple routing.
Robert Haas
2017-09-07
1
-1
/
+1
*
Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).
Andres Freund
2017-08-20
1
-1
/
+2
*
Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.
Robert Haas
2017-08-18
1
-0
/
+1
*
Final pgindent + perltidy run for v10.
Tom Lane
2017-08-14
1
-4
/
+4
*
Improve ExecModifyTable comments.
Robert Haas
2017-08-03
1
-4
/
+7
*
Teach map_partition_varattnos to handle whole-row expressions.
Robert Haas
2017-08-03
1
-2
/
+2
*
Move ExecProcNode from dispatch to function pointer based model.
Andres Freund
2017-07-30
1
-2
/
+4
*
Move interrupt checking from ExecProcNode() to executor nodes.
Andres Freund
2017-07-30
1
-0
/
+2
*
Use a real RT index when setting up partition tuple routing.
Robert Haas
2017-07-17
1
-0
/
+1
*
Fix transition tables for wCTEs.
Andrew Gierth
2017-06-28
1
-4
/
+12
*
Fix transition tables for partition/inheritance.
Andrew Gierth
2017-06-28
1
-14
/
+136
*
Phase 3 of pgindent updates.
Tom Lane
2017-06-21
1
-14
/
+14
*
Phase 2 of pgindent updates.
Tom Lane
2017-06-21
1
-3
/
+2
*
Re-run pgindent.
Tom Lane
2017-06-13
1
-2
/
+2
*
Fix confusion about number of subplans in partitioned INSERT setup.
Tom Lane
2017-06-12
1
-5
/
+16
*
Prevent BEFORE triggers from violating partitioning constraints.
Robert Haas
2017-06-07
1
-2
/
+19
*
Post-PG 10 beta1 pgindent run
Bruce Momjian
2017-05-17
1
-12
/
+12
*
Fire per-statement triggers on partitioned tables.
Robert Haas
2017-05-01
1
-8
/
+34
*
Improve castNode notation by introducing list-extraction-specific variants.
Tom Lane
2017-04-10
1
-1
/
+1
*
Fix reporting of violations in ExecConstraints, again.
Robert Haas
2017-04-10
1
-4
/
+3
*
Faster expression evaluation and targetlist projection.
Andres Freund
2017-03-25
1
-22
/
+16
*
Don't scan partitioned tables.
Robert Haas
2017-03-21
1
-1
/
+18
*
Use the new castNode() macro in a number of places.
Andres Freund
2017-01-26
1
-3
/
+1
*
Fix things so that updatable views work with partitioned tables.
Robert Haas
2017-01-24
1
-0
/
+40
*
Reindent table partitioning code.
Robert Haas
2017-01-24
1
-22
/
+23
*
Remove obsoleted code relating to targetlist SRF evaluation.
Andres Freund
2017-01-19
1
-2
/
+2
*
Fix RETURNING to work correctly with partition tuple routing.
Robert Haas
2017-01-19
1
-9
/
+34
*
Fix reporting of constraint violations for table partitioning.
Robert Haas
2017-01-04
1
-9
/
+6
*
Move partition_tuple_slot out of EState.
Robert Haas
2017-01-04
1
-9
/
+8
*
Update copyright via script for 2017
Bruce Momjian
2017-01-03
1
-1
/
+1
*
Fix tuple routing in cases where tuple descriptors don't match.
Robert Haas
2016-12-22
1
-0
/
+27
*
Refactor partition tuple routing code to reduce duplication.
Robert Haas
2016-12-21
1
-61
/
+15
*
Clean up code, comments, and formatting for table partitioning.
Robert Haas
2016-12-13
1
-11
/
+11
*
Implement table partitioning.
Robert Haas
2016-12-07
1
-3
/
+151
*
Avoid testing tuple visibility without buffer lock.
Tom Lane
2016-10-23
1
-0
/
+6
*
Don't throw serialization errors for self-conflicts in INSERT ON CONFLICT.
Tom Lane
2016-10-23
1
-2
/
+11
*
pgindent run for 9.6
Robert Haas
2016-06-09
1
-5
/
+5
*
Directly modify foreign tables.
Robert Haas
2016-03-18
1
-10
/
+50
*
When modifying a foreign table, initialize tableoid field properly.
Robert Haas
2016-02-04
1
-0
/
+23
*
Update copyright for 2016
Bruce Momjian
2016-01-02
1
-1
/
+1
*
Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.
Andres Freund
2015-12-10
1
-1
/
+10
*
Fix ON CONFLICT DO UPDATE for tables with oids.
Andres Freund
2015-09-28
1
-1
/
+1
*
Remove false comment about speculative insertion.
Heikki Linnakangas
2015-07-27
1
-2
/
+1
*
pgindent run for 9.5
Bruce Momjian
2015-05-23
1
-28
/
+27
*
Attach ON CONFLICT SET ... WHERE to the correct planstate.
Andres Freund
2015-05-19
1
-1
/
+1
*
Fix ON CONFLICT bugs that manifest when used in rules.
Andres Freund
2015-05-13
1
-0
/
+1
[next]