提交 eba06308 authored 作者: plus33's avatar plus33

Fixed CR/LF issue with Git

上级 d4a99ea1
...@@ -113,8 +113,9 @@ public class TestAlter extends TestBase { ...@@ -113,8 +113,9 @@ public class TestAlter extends TestBase {
} }
private void testAlterTableDropMultipleColumns() throws SQLException { private void testAlterTableDropMultipleColumns() throws SQLException {
stat.execute("create table test(id int, name varchar, name2 varchar)"); stat.execute("create table test(id int, b varchar, c int, d int)");
stat.execute("alter table test drop column name, name2"); stat.execute("alter table test drop column b, c");
stat.execute("alter table test drop d");
stat.execute("drop table test"); stat.execute("drop table test");
// Test-Case: Same as above but using brackets (Oracle style) // Test-Case: Same as above but using brackets (Oracle style)
stat.execute("create table test(id int, b varchar, c int, d int)"); stat.execute("create table test(id int, b varchar, c int, d int)");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论