WL#9127: Define new handler API for sampling

Affects: Server-8.0   —   Status: Complete

This worklog specifies a new handler API for doing sampling of a given table.
The main use case for the new API is for building histograms. Creating a
histogram for a large table (terabyte size) can be very costly. Building a
histogram over a sample of the data is much more efficient, and it will still
give a reasonably good histogram.

Another use case in the future, might be to implement the SQL standard feature
T613, Sampling. This feature allows for "TABLESAMPLE" to be specified after a
 clause, and is implemented by several major DBMS (SQL Server,
PostgreSQL, Oracle, DB2 etc.):

  SELECT * FROM t1 TABLESAMPLE SYSTEM (5);

The above example would return approximately 5 percentage of the data in the
table 't1'.

User Documentation
==================

No user-visible changes. No user documentation needed.