Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
25e1e0da
提交
25e1e0da
authored
1月 15, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Open to not log binary values.
上级
b3bd3a5b
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
23 行增加
和
1 行删除
+23
-1
Set.java
h2/src/main/org/h2/command/dml/Set.java
+5
-0
SetTypes.java
h2/src/main/org/h2/command/dml/SetTypes.java
+6
-0
Session.java
h2/src/main/org/h2/engine/Session.java
+9
-0
ByteUtils.java
h2/src/main/org/h2/util/ByteUtils.java
+1
-1
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+2
-0
没有找到文件。
h2/src/main/org/h2/command/dml/Set.java
浏览文件 @
25e1e0da
...
...
@@ -245,6 +245,11 @@ public class Set extends Prepared {
session
.
setQueryTimeout
(
value
);
break
;
}
case
SetTypes
.
REDO_LOG_BINARY
:
{
int
value
=
getIntValue
();
session
.
setRedoLogBinary
(
value
==
1
);
break
;
}
case
SetTypes
.
REFERENTIAL_INTEGRITY
:
{
session
.
getUser
().
checkAdmin
();
int
value
=
getIntValue
();
...
...
h2/src/main/org/h2/command/dml/SetTypes.java
浏览文件 @
25e1e0da
...
...
@@ -194,6 +194,11 @@ public class SetTypes {
*/
public
static
final
int
QUERY_TIMEOUT
=
36
;
/**
* The type of a SET REDO_LOG_BINARY statement.
*/
public
static
final
int
REDO_LOG_BINARY
=
37
;
private
static
final
ArrayList
<
String
>
TYPES
=
New
.
arrayList
();
private
SetTypes
()
{
...
...
@@ -239,6 +244,7 @@ public class SetTypes {
list
.
add
(
CREATE_BUILD
,
"CREATE_BUILD"
);
list
.
add
(
VARIABLE
,
"@"
);
list
.
add
(
QUERY_TIMEOUT
,
"QUERY_TIMEOUT"
);
list
.
add
(
REDO_LOG_BINARY
,
"REDO_LOG_BINARY"
);
}
/**
...
...
h2/src/main/org/h2/engine/Session.java
浏览文件 @
25e1e0da
...
...
@@ -86,6 +86,7 @@ public class Session extends SessionWithState {
private
int
systemIdentifier
;
private
HashMap
<
String
,
Procedure
>
procedures
;
private
boolean
undoLogEnabled
=
true
;
private
boolean
redoLogBinary
=
true
;
private
boolean
autoCommitAtTransactionEnd
;
private
String
currentTransactionName
;
private
volatile
long
cancelAt
;
...
...
@@ -1010,6 +1011,10 @@ public class Session extends SessionWithState {
this
.
undoLogEnabled
=
b
;
}
public
void
setRedoLogBinary
(
boolean
b
)
{
this
.
redoLogBinary
=
b
;
}
public
boolean
isUndoLogEnabled
()
{
return
undoLogEnabled
;
}
...
...
@@ -1175,4 +1180,8 @@ public class Session extends SessionWithState {
return
scopeIdentity
;
}
public
boolean
isRedoLogBinaryEnabled
()
{
return
redoLogBinary
;
}
}
h2/src/main/org/h2/util/ByteUtils.java
浏览文件 @
25e1e0da
...
...
@@ -41,7 +41,7 @@ public class ByteUtils {
/**
* Write a long value to the byte array.
*
* @param buffthe byte array
* @param buff
the byte array
* @param pos the position
* @param x the value
*/
...
...
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
25e1e0da
...
...
@@ -299,6 +299,8 @@ java org.h2.test.TestAll timer
/*
increment storage read version
update copyright to 2010
outer join bug
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论