Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用 delete join 时,不能正确生成数据备份与回滚语句 #616

Open
dibrother opened this issue Oct 20, 2023 · 1 comment
Open

Comments

@dibrother
Copy link

描述
使用 delete join 时,不能正确生成数据备份回滚语句

重现

# 建表
create table t1 (id int ,va varchar(10));
create table t2 (id int ,va varchar(10));
# 测试数据
insert into t1 values(1,'老王');
insert into t2 values (1,'老李');

# 问题语句
delete a,b from t1 a join t2 b on a.id = b.id;  -- Execute Successfully Backup failed
@hanchuanchuan
Copy link
Owner

已更新. 请升级到 v1.3.0-84 版本后重试.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants