Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
10.4.31
Description
create table t1 (a int, b int); |
create procedure sp() with cte as (select * from t1) select * from cte; |
call sp();
|
alter table t1 add column c int; |
call sp();
|
The second sp() call should probably fail with ER_WITH_COL_WRONG_LIST