WL#7870: Create JOIN object after query preparation

Status: Complete

The main goal of this worklog is to make it possible to prepare a query without
having a JOIN object available. The JOIN object is hereafter created just before
a query is optimized, and can thus be initialized directly from a prepared
SELECT_LEX object.

An important part of this WL is also to refactor the functions used to prepare,
optimize, execute and explain queries. The reason for this refactoring is that
it turned out to be complicated to carry out the main goal with the inherent
complexity of these functions.

Resolving is refactored so that we now resolve GROUP BY, then HAVING, then ORDER
BY, while previously ORDER BY was resolved before HAVING. This might cause some
queries with aggregation only in HAVING to appear non-aggregated when processing
ORDER BY.

The refactoring also fixes the following bug:

BUG#70553: EXPLAIN UPDATE SHOWS "USING JOIN BUFFER" WHILE IT IS NOT USED