Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
f42e330f
提交
f42e330f
authored
11月 16, 2016
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
don't drop session local temp tables when
doing DROP ALL OBJECTS leads to an NPE when the session closes
上级
be0f8ddc
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
28 行增加
和
5 行删除
+28
-5
DropDatabase.java
h2/src/main/org/h2/command/ddl/DropDatabase.java
+11
-4
DbObjectBase.java
h2/src/main/org/h2/engine/DbObjectBase.java
+15
-0
TestRandomSQL.java
h2/src/test/org/h2/test/synth/TestRandomSQL.java
+2
-1
没有找到文件。
h2/src/main/org/h2/command/ddl/DropDatabase.java
浏览文件 @
f42e330f
...
...
@@ -14,6 +14,7 @@ import org.h2.engine.Session;
import
org.h2.engine.User
;
import
org.h2.schema.Schema
;
import
org.h2.schema.SchemaObject
;
import
org.h2.schema.Sequence
;
import
org.h2.table.Table
;
import
org.h2.table.TableType
;
import
org.h2.util.New
;
...
...
@@ -83,7 +84,7 @@ public class DropDatabase extends DefineCommand {
runLoopAgain
=
false
;
for
(
Table
t
:
toRemove
)
{
if
(
t
.
getName
()
==
null
)
{
// ignore
// ignore
, already dead
}
else
if
(
db
.
getDependentTable
(
t
,
t
)
==
null
)
{
db
.
removeSchemaObject
(
session
,
t
);
}
else
{
...
...
@@ -92,15 +93,21 @@ public class DropDatabase extends DefineCommand {
}
}
while
(
runLoopAgain
);
// TODO local temp tables are not removed
// TODO
session-
local temp tables are not removed
for
(
Schema
schema
:
db
.
getAllSchemas
())
{
if
(
schema
.
canDrop
())
{
db
.
removeDatabaseObject
(
session
,
schema
);
}
}
session
.
findLocalTempTable
(
null
);
ArrayList
<
SchemaObject
>
list
=
New
.
arrayList
();
list
.
addAll
(
db
.
getAllSchemaObjects
(
DbObject
.
SEQUENCE
));
for
(
SchemaObject
obj
:
db
.
getAllSchemaObjects
(
DbObject
.
SEQUENCE
))
{
// ignore these. the ones we want to drop will get dropped when we drop
// their associated tables, and we will ignore the problematic ones
// that belong to session-local temp tables.
if
(!((
Sequence
)
obj
).
getBelongsToTable
())
{
list
.
add
(
obj
);
}
}
// maybe constraints and triggers on system tables will be allowed in
// the future
list
.
addAll
(
db
.
getAllSchemaObjects
(
DbObject
.
CONSTRAINT
));
...
...
h2/src/main/org/h2/engine/DbObjectBase.java
浏览文件 @
f42e330f
...
...
@@ -5,8 +5,11 @@
*/
package
org
.
h2
.
engine
;
import
java.io.PrintWriter
;
import
java.io.StringWriter
;
import
java.util.ArrayList
;
import
org.h2.command.Parser
;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
/**
...
...
@@ -123,16 +126,28 @@ public abstract class DbObjectBase implements DbObject {
return
objectName
;
}
private
String
invalidateStackTrace
;
/**
* Set the main attributes to null to make sure the object is no longer
* used.
*/
protected
void
invalidate
()
{
if
(
SysProperties
.
CHECK
&&
id
==
-
1
)
{
throw
DbException
.
throwInternalError
();
}
setModified
();
id
=
-
1
;
database
=
null
;
trace
=
null
;
objectName
=
null
;
StringWriter
sw
=
new
StringWriter
();
PrintWriter
pw
=
new
PrintWriter
(
sw
);
new
Throwable
().
printStackTrace
(
pw
);
invalidateStackTrace
=
sw
.
toString
();
}
public
final
boolean
isValid
()
{
return
id
!=
-
1
;
}
@Override
...
...
h2/src/test/org/h2/test/synth/TestRandomSQL.java
浏览文件 @
f42e330f
...
...
@@ -34,7 +34,8 @@ public class TestRandomSQL extends TestBase {
if
(
config
.
networked
)
{
return
;
}
int
len
=
getSize
(
2
,
6
);
config
.
memory
=
true
;
int
len
=
567897
;
// getSize(2, 6);
for
(
int
a
=
0
;
a
<
len
;
a
++)
{
int
s
=
MathUtils
.
randomInt
(
Integer
.
MAX_VALUE
);
testCase
(
s
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论