WL#5094: Create SQL command classes for DML statements

Affects: Server-8.0   —   Status: Complete

Create classes derived from Sql_cmd that represent all supported data manipulation (DML) statements.

It is also part of our work to refactor prepared statement handling. In order to do that, we need a consistent interface to all DML statements, and we need interfaces to prepare and unprepare such statements.

The key benefits of this worklog are:

  • Consolidation of all DML statements into a simple class hierarchy.
  • Clear state transitions for all DML statements (unprepared - prepared - executed).
  • Preparation code and execution code clearly separated
  • Lifecycle processing of Query_result objects prepared for single preparation.
  • Consolidation of preparation code - an example is INSERT that used to contain three different preparation codes depending on whether the preparation was for INSERT VALUES, INSERT SELECT, or for a prepared statement.

One side-effect of the worklog is that prepared statements will always go through a full preparation, before being unprepared and then re-prepared and executed. Later the redundant preparation step will be removed. However, in some cases, we will execute slightly more code in preparation steps than before, since some preparation code has been moved from the execution stage. It is not expected that this will cause a noticeable performance degradation for prepared statements.

User Documentation

No significant user-visible effects. No user documentation required.