Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
45501baf
Unverified
提交
45501baf
authored
1月 13, 2019
作者:
Evgenij Ryazanov
提交者:
GitHub
1月 13, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1662 from mhewedy/master
Fix Alter Table Drop Column In View when table name is wrapped by Double Quotes
上级
6ce3c8ee
0afa97c3
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
16 行增加
和
1 行删除
+16
-1
AlterTableAlterColumn.java
h2/src/main/org/h2/command/ddl/AlterTableAlterColumn.java
+1
-1
TestViewAlterTable.java
h2/src/test/org/h2/test/db/TestViewAlterTable.java
+15
-0
没有找到文件。
h2/src/main/org/h2/command/ddl/AlterTableAlterColumn.java
浏览文件 @
45501baf
...
@@ -296,7 +296,7 @@ public class AlterTableAlterColumn extends CommandWithColumns {
...
@@ -296,7 +296,7 @@ public class AlterTableAlterColumn extends CommandWithColumns {
// (because the column to drop is referenced or so)
// (because the column to drop is referenced or so)
checkViews
(
table
,
newTable
);
checkViews
(
table
,
newTable
);
}
catch
(
DbException
e
)
{
}
catch
(
DbException
e
)
{
execute
(
"DROP TABLE "
+
newTable
.
get
Name
(),
true
);
execute
(
"DROP TABLE "
+
newTable
.
get
SQL
(),
true
);
throw
e
;
throw
e
;
}
}
String
tableName
=
table
.
getName
();
String
tableName
=
table
.
getName
();
...
...
h2/src/test/org/h2/test/db/TestViewAlterTable.java
浏览文件 @
45501baf
...
@@ -46,6 +46,7 @@ public class TestViewAlterTable extends TestDb {
...
@@ -46,6 +46,7 @@ public class TestViewAlterTable extends TestDb {
testJoinAndAlias
();
testJoinAndAlias
();
testSubSelect
();
testSubSelect
();
testForeignKey
();
testForeignKey
();
testAlterTableDropColumnInViewWithDoubleQuotes
();
conn
.
close
();
conn
.
close
();
deleteDb
(
getTestName
());
deleteDb
(
getTestName
());
...
@@ -197,4 +198,18 @@ public class TestViewAlterTable extends TestDb {
...
@@ -197,4 +198,18 @@ public class TestViewAlterTable extends TestDb {
}
}
}
}
// original error: table "XX_COPY_xx_xx" not found
private
void
testAlterTableDropColumnInViewWithDoubleQuotes
()
throws
SQLException
{
// simple
stat
.
execute
(
"create table \"test\"(id identity, name varchar) "
+
"as select x, 'Hello'"
);
stat
.
execute
(
"create view test_view as select * from \"test\""
);
assertThrows
(
ErrorCode
.
COLUMN_IS_REFERENCED_1
,
stat
).
execute
(
"alter table \"test\" drop name"
);
ResultSet
rs
=
stat
.
executeQuery
(
"select * from test_view"
);
assertTrue
(
rs
.
next
());
stat
.
execute
(
"drop view test_view"
);
stat
.
execute
(
"drop table \"test\""
);
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论