【 使用环境 】测试环境
【 OB or 其他组件 】
【 使用版本 】4.3.0
【问题描述】当对表A创建物化视图日志后,对A表执行update时,提示1146 - Table doesn’t exist,但desc table和select table都正常。
【复现路径】
# 创建日志
create MATERIALIZED VIEW LOG on table_a with sequence(90多个字段)including new values;
# 执行更新
UPDATE table_a
SET column_x = "11111111"
WHERE
column_y = "2222222";
提示1146 - Table doesn't exist
# desc table_a,select * from table_a limit 1 都正常。删除日志后,update恢复正常。