Allow SET STATISTICS on expression indexes

Simon Riggs <simon@2ndQuadrant.com>

Commit: 5b6d13eec72b960eb0f78542199380e49c8583d4
Author: Simon Riggs <simon@2ndQuadrant.com>
Date: 2017-09-06T20:46:01Z
Releases: 11.0
Allow SET STATISTICS on expression indexes

Index columns are referenced by ordinal number rather than name, e.g.
CREATE INDEX coord_idx ON measured (x, y, (z + t));
ALTER INDEX coord_idx ALTER COLUMN 3 SET STATISTICS 1000;

Incompatibility note for release notes:
\d+ for indexes now also displays Stats Target

Authors: Alexander Korotkov, with contribution by Adrien NAYRAT
Review: Adrien NAYRAT, Simon Riggs
Wordsmith: Simon Riggs

Files

Documentation touched