WL#9248: InnoDB: Allow multiple readers and one writer on InnoDB internal tmp table

Affects: Server-8.0   —   Status: Complete

Necessary changes inside innodb to support CTE.

Basically, this is to support multiple readers and single writer access the same
intrinsic table and still maintain the context for them separately.

The key is that these readers and writer are with the same thread, so the work
is serialized:

An example:

reader a reads 1
reader b reads 1
writer c writes 2
reader a reads 2
writer c writes 3
read b reads 2

The current intrinsic table does not have mechanism to support multiple cursor
positions. So this worklog is to make sure we put this support back (the normal
table can support multiple cursor position).

To do so, we will also need mechanism to tell readers to "reposition" if a page
splits happens. Since the tree splits could move the records, including those
already have cursors positioned on it.


This worklog would also remove the consistent read requirement on intrinsic
table. All the access are done with read dirty scheme.

This worklog also puts an optimization that use statistics row count instead of
a full table scan. Since there is only one thread working on intrinsic table,
thus statistics count should be accurate.