[COMMITTERS] pgsql: Eliminate pg_rewrite.ev_attr column and related dead code.

2013-09-05 Thread Kevin Grittner
Eliminate pg_rewrite.ev_attr column and related dead code. Commit 95ef6a344821655ce4d0a74999ac49dd6af6d342 removed the ability to create rules on an individual column as of 7.3, but left some residual code which has since been useless. This cleans up that dead code without any change in behavior

[COMMITTERS] pgsql: Make catalog cache hash tables resizeable.

2013-09-05 Thread Heikki Linnakangas
Make catalog cache hash tables resizeable. If the hash table backing a catalog cache becomes too full (fillfactor > 2), enlarge it. A new buckets array, double the size of the old, is allocated, and all entries in the old hash are moved to the right bucket in the new hash. This has two benefits.

[COMMITTERS] pgsql: Improve Range Types and Exclusion Constraints example.

2013-09-05 Thread Jeff Davis
Improve Range Types and Exclusion Constraints example. Make the examples self-contained to avoid confusion. Per bug report 8367 from KOIZUMI Satoru. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/1bb4b62d3e5209dae1f1e441b7f01a053b7587f4 Modified Files --

[COMMITTERS] pgsql: Improve Range Types and Exclusion Constraints example.

2013-09-05 Thread Jeff Davis
Improve Range Types and Exclusion Constraints example. Make the examples self-contained to avoid confusion. Per bug report 8367 from KOIZUMI Satoru. Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/fb843b2679d959a63f48c2f4ad52243053e1a5d4 Modified Files --

Re: [COMMITTERS] pgsql: Improve Range Types and Exclusion Constraints example.

2013-09-05 Thread Magnus Hagander
Backpatch to 9.3 at least, maybe? Without that, it's not going to show up in "production docs" for a year... //Magnus On Thu, Sep 5, 2013 at 8:30 AM, Jeff Davis wrote: > Improve Range Types and Exclusion Constraints example. > > Make the examples self-contained to avoid confusion. Per bug repor