Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
23492d1a
提交
23492d1a
authored
2月 02, 2019
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Delegate creation of TypeInfo for custom types to CustomDataTypesHandler
上级
992f5c7f
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
27 行增加
和
8 行删除
+27
-8
CustomDataTypesHandler.java
h2/src/main/org/h2/api/CustomDataTypesHandler.java
+13
-0
TypeInfo.java
h2/src/main/org/h2/value/TypeInfo.java
+9
-7
TestCustomDataTypesHandler.java
h2/src/test/org/h2/test/jdbc/TestCustomDataTypesHandler.java
+5
-1
没有找到文件。
h2/src/main/org/h2/api/CustomDataTypesHandler.java
浏览文件 @
23492d1a
...
@@ -7,6 +7,8 @@ package org.h2.api;
...
@@ -7,6 +7,8 @@ package org.h2.api;
import
org.h2.store.DataHandler
;
import
org.h2.store.DataHandler
;
import
org.h2.value.DataType
;
import
org.h2.value.DataType
;
import
org.h2.value.ExtTypeInfo
;
import
org.h2.value.TypeInfo
;
import
org.h2.value.Value
;
import
org.h2.value.Value
;
/**
/**
...
@@ -36,6 +38,17 @@ public interface CustomDataTypesHandler {
...
@@ -36,6 +38,17 @@ public interface CustomDataTypesHandler {
*/
*/
DataType
getDataTypeById
(
int
type
);
DataType
getDataTypeById
(
int
type
);
/**
* Get type info for the given data type identity.
*
* @param type identifier of a data type
* @param precision precision
* @param scale scale
* @param extTypeInfo the extended type information, or null
* @return type information
*/
TypeInfo
getTypeInfoById
(
int
type
,
long
precision
,
int
scale
,
ExtTypeInfo
extTypeInfo
);
/**
/**
* Get order for custom data type given its integer id
* Get order for custom data type given its integer id
*
*
...
...
h2/src/main/org/h2/value/TypeInfo.java
浏览文件 @
23492d1a
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*/
*/
package
org
.
h2
.
value
;
package
org
.
h2
.
value
;
import
org.h2.api.CustomDataTypesHandler
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.ErrorCode
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.util.JdbcUtils
;
import
org.h2.util.JdbcUtils
;
...
@@ -208,10 +209,11 @@ public class TypeInfo {
...
@@ -208,10 +209,11 @@ public class TypeInfo {
return
t
;
return
t
;
}
}
}
}
if
(
JdbcUtils
.
customDataTypesHandler
!=
null
)
{
CustomDataTypesHandler
handler
=
JdbcUtils
.
customDataTypesHandler
;
DataType
dt
=
JdbcUtils
.
customDataTypesHandler
.
getDataTypeById
(
type
);
if
(
handler
!=
null
)
{
DataType
dt
=
handler
.
getDataTypeById
(
type
);
if
(
dt
!=
null
)
{
if
(
dt
!=
null
)
{
return
createTypeInfo
(
type
,
dt
);
return
handler
.
getTypeInfoById
(
type
,
dt
.
maxPrecision
,
dt
.
maxScale
,
null
);
}
}
}
}
return
TYPE_NULL
;
return
TYPE_NULL
;
...
@@ -342,10 +344,10 @@ public class TypeInfo {
...
@@ -342,10 +344,10 @@ public class TypeInfo {
return
new
TypeInfo
(
type
,
precision
,
scale
,
ValueInterval
.
getDisplaySize
(
type
,
(
int
)
precision
,
scale
),
return
new
TypeInfo
(
type
,
precision
,
scale
,
ValueInterval
.
getDisplaySize
(
type
,
(
int
)
precision
,
scale
),
null
);
null
);
}
}
if
(
JdbcUtils
.
customDataTypesHandler
!=
null
)
{
CustomDataTypesHandler
handler
=
JdbcUtils
.
customDataTypesHandler
;
DataType
dt
=
JdbcUtils
.
customDataTypesHandler
.
getDataTypeById
(
type
);
if
(
handler
!=
null
)
{
if
(
dt
!=
null
)
{
if
(
handler
.
getDataTypeById
(
type
)
!=
null
)
{
return
createTypeInfo
(
type
,
dt
);
return
handler
.
getTypeInfoById
(
type
,
precision
,
scale
,
extTypeInfo
);
}
}
}
}
return
TYPE_NULL
;
return
TYPE_NULL
;
...
...
h2/src/test/org/h2/test/jdbc/TestCustomDataTypesHandler.java
浏览文件 @
23492d1a
...
@@ -191,7 +191,6 @@ public class TestCustomDataTypesHandler extends TestDb {
...
@@ -191,7 +191,6 @@ public class TestCustomDataTypesHandler extends TestDb {
if
(
name
.
toLowerCase
(
Locale
.
ENGLISH
).
equals
(
COMPLEX_DATA_TYPE_NAME
))
{
if
(
name
.
toLowerCase
(
Locale
.
ENGLISH
).
equals
(
COMPLEX_DATA_TYPE_NAME
))
{
return
complexDataType
;
return
complexDataType
;
}
}
return
null
;
return
null
;
}
}
...
@@ -203,6 +202,11 @@ public class TestCustomDataTypesHandler extends TestDb {
...
@@ -203,6 +202,11 @@ public class TestCustomDataTypesHandler extends TestDb {
return
null
;
return
null
;
}
}
@Override
public
TypeInfo
getTypeInfoById
(
int
type
,
long
precision
,
int
scale
,
ExtTypeInfo
extTypeInfo
)
{
return
new
TypeInfo
(
type
,
0
,
0
,
ValueDouble
.
DISPLAY_SIZE
*
2
+
1
,
null
);
}
@Override
@Override
public
String
getDataTypeClassName
(
int
type
)
{
public
String
getDataTypeClassName
(
int
type
)
{
if
(
type
==
COMPLEX_DATA_TYPE_ID
)
{
if
(
type
==
COMPLEX_DATA_TYPE_ID
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论