未验证 提交 7b62fcc1 编写于 作者: V Vlad Ilyushchenko 提交者: GitHub

fix(sql): fixed "invalid column" error, which was caused by incorrect top-down...

fix(sql): fixed "invalid column" error, which was caused by incorrect top-down column propagation (#1027)
上级 eee6603d
...@@ -211,6 +211,14 @@ public class O3FailureTest extends AbstractO3Test { ...@@ -211,6 +211,14 @@ public class O3FailureTest extends AbstractO3Test {
} }
return super.allocate(fd, size); return super.allocate(fd, size);
} }
@Override
public boolean close(long fd) {
if (fd == theFd) {
theFd = -1;
}
return super.close(fd);
}
}; };
@Test @Test
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册