WL#4179: Stored programs: validation of stored program statements

Affects: Server-5.6   —   Status: Complete

Currently there is a problem in handling meta-data changes of the objects
(tables, views, ...) which are used in a stored program. The meta-data
information of such objects is fixed at the compilation time, and is not
updated when the objects are changed (by DDL statements). Next stored
program executions use outdated meta-data information, which leads to
wrong-data-errors or even a crash.

This WL task is about fixing that problem following the approach, previously
implemented for Prepared Statements (WL#4166). The idea is to remember
the original query for SQL-statement within a Stored Programs and re-parse
it when meta-data has changed.

There are a number of P1/P2 bugs which will be fixed by this WL task,
in particular:

  - Bug#11747537 - 32868: STORED ROUTINES DO NOT DETECT CHANGES IN
    META-DATA.

  - Bug#11747580 - 33082: STORED PROCEDURE: CRASH IF TABLE REPLACED WITH A
    VIEW IN A LOOP

  - Bug#11747581 - 33083: STORED FUNCTION: ERROR AND CRASH IF A TEMPORARY
    TABLE IS DROPPED IN A LOO

  - Bug#11747566 - 33000: TRIGGERS DO NOT DETECT CHANGES IN META-DATA.

  - Bug#11747626 - 33289: STORED PROCEDURE: BAD DATA IF VIEW IS REPLACED
    WITHIN A ITERATION

  - Bug#11745236 - 12257: SELECT * INSIDE PROCEDURE GIVES "UNKNOWN COLUMN"
    ON SECOND LOOP IF TBL C

  - Bug#12652835 - 61434: PREPARED STATEMENTS AND TEMPORARY TABLES IN
    STORED PROCEDURES

  - Bug#11747619 - 33255: TRIGGER USING VIEWS AND VIEW DDL : CORRUPTED
    TRIGGERS

All bugs fixed by this WL task are tagged with "WL#4179" in the Oracle BugDB.

In order to get the complete list of the bugs fixed by this WL task,
one can use 'Bugs_4179' saved search
(on http://clustra.no.oracle.com/orabugs/save-search.php).

This WL task is a pre-requisite for WL#4299 (Stored Routines: use the new
metadata cache).

Bug#11748352 (36002: PREPARED STATEMENTS: IF A VIEW USED IN A STATEMENT IS
REPLACED, BAD DATA) seems to be related, but actually a different issue.
A bugfix for Bug#11748352/36002 is needed to fix bugs from the list above.