Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
48f2bac3
提交
48f2bac3
authored
4月 25, 2018
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support custom datatypes in PageStore engin
上级
61d61b28
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
27 行增加
和
1 行删除
+27
-1
Data.java
h2/src/main/org/h2/store/Data.java
+27
-1
没有找到文件。
h2/src/main/org/h2/store/Data.java
浏览文件 @
48f2bac3
...
...
@@ -18,7 +18,6 @@ import java.sql.ResultSetMetaData;
import
java.sql.SQLException
;
import
java.sql.Timestamp
;
import
java.util.Arrays
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.engine.SysProperties
;
...
...
@@ -26,6 +25,7 @@ import org.h2.message.DbException;
import
org.h2.tools.SimpleResultSet
;
import
org.h2.util.Bits
;
import
org.h2.util.DateTimeUtils
;
import
org.h2.util.JdbcUtils
;
import
org.h2.util.MathUtils
;
import
org.h2.util.Utils
;
import
org.h2.value.DataType
;
...
...
@@ -90,6 +90,7 @@ public class Data {
private
static
final
int
LOCAL_TIME
=
132
;
private
static
final
int
LOCAL_DATE
=
133
;
private
static
final
int
LOCAL_TIMESTAMP
=
134
;
private
static
final
byte
CUSTOM_DATA_TYPE
=
(
byte
)
135
;
private
static
final
long
MILLIS_PER_MINUTE
=
1000
*
60
;
...
...
@@ -694,6 +695,14 @@ public class Data {
break
;
}
default
:
if
(
JdbcUtils
.
customDataTypesHandler
!=
null
)
{
byte
[]
b
=
v
.
getBytesNoCopy
();
writeByte
(
CUSTOM_DATA_TYPE
);
writeVarInt
(
type
);
writeVarInt
(
b
.
length
);
write
(
b
,
0
,
b
.
length
);
break
;
}
DbException
.
throwInternalError
(
"type="
+
v
.
getType
());
}
if
(
SysProperties
.
CHECK2
)
{
...
...
@@ -878,6 +887,18 @@ public class Data {
}
return
ValueResultSet
.
get
(
rs
);
}
case
CUSTOM_DATA_TYPE:
{
if
(
JdbcUtils
.
customDataTypesHandler
!=
null
)
{
int
customType
=
readVarInt
();
int
len
=
readVarInt
();
byte
[]
b
=
Utils
.
newBytes
(
len
);
read
(
b
,
0
,
len
);
return
JdbcUtils
.
customDataTypesHandler
.
convert
(
ValueBytes
.
getNoCopy
(
b
),
customType
);
}
throw
DbException
.
get
(
ErrorCode
.
UNKNOWN_DATA_TYPE_1
,
"No CustomDataTypesHandler has been set up"
);
}
default
:
if
(
type
>=
INT_0_15
&&
type
<
INT_0_15
+
16
)
{
return
ValueInt
.
get
(
type
-
INT_0_15
);
...
...
@@ -1126,6 +1147,11 @@ public class Data {
return
len
;
}
default
:
if
(
JdbcUtils
.
customDataTypesHandler
!=
null
)
{
byte
[]
b
=
v
.
getBytesNoCopy
();
return
1
+
getVarIntLen
(
v
.
getType
())
+
getVarIntLen
(
b
.
length
)
+
b
.
length
;
}
throw
DbException
.
throwInternalError
(
"type="
+
v
.
getType
());
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论