Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
62ff12af
提交
62ff12af
authored
6月 18, 2017
作者:
httpdigest
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Incorporate review remarks from @grandinj
上级
2eb2a31b
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
31 行增加
和
6 行删除
+31
-6
Mode.java
h2/src/main/org/h2/engine/Mode.java
+2
-2
Value.java
h2/src/main/org/h2/value/Value.java
+11
-0
ValueStringFixed.java
h2/src/main/org/h2/value/ValueStringFixed.java
+18
-4
没有找到文件。
h2/src/main/org/h2/engine/Mode.java
浏览文件 @
62ff12af
...
...
@@ -163,7 +163,7 @@ public class Mode {
/**
* Whether to right-pad fixed strings with spaces.
*/
public
boolean
padFixedStrings
;
public
boolean
padFixed
Length
Strings
;
private
final
String
name
;
...
...
@@ -261,7 +261,7 @@ public class Mode {
mode
.
supportedClientInfoPropertiesRegEx
=
Pattern
.
compile
(
"ApplicationName"
);
mode
.
prohibitEmptyInPredicate
=
true
;
mode
.
padFixedStrings
=
true
;
mode
.
padFixed
Length
Strings
=
true
;
add
(
mode
);
mode
=
new
Mode
(
"Ignite"
);
...
...
h2/src/main/org/h2/value/Value.java
浏览文件 @
62ff12af
...
...
@@ -535,7 +535,15 @@ public abstract class Value {
throw
throwUnsupportedExceptionForType
(
"%"
);
}
/**
* Compare a value to the specified type.
*
* @param targetType the type of the returned value
* @return the converted value
*/
public
Value
convertTo
(
int
targetType
)
{
// Use -1 to indicate "default behaviour" where value conversion should not
// depend on any datatype precision.
return
convertTo
(
targetType
,
-
1
,
null
);
}
...
...
@@ -543,6 +551,9 @@ public abstract class Value {
* Compare a value to the specified type.
*
* @param targetType the type of the returned value
* @param the precision of the column to convert this value to.
* The special constant <code>-1</code> is used to indicate that
* the precision plays no role when converting the value
* @return the converted value
*/
public
Value
convertTo
(
int
targetType
,
int
precision
,
Mode
mode
)
{
...
...
h2/src/main/org/h2/value/ValueStringFixed.java
浏览文件 @
62ff12af
...
...
@@ -50,9 +50,7 @@ public class ValueStringFixed extends ValueString {
return
s
;
}
char
[]
res
=
new
char
[
length
];
for
(
int
i
=
0
;
i
<
s
.
length
();
i
++)
{
res
[
i
]
=
s
.
charAt
(
i
);
}
s
.
getChars
(
0
,
s
.
length
(),
res
,
0
);
Arrays
.
fill
(
res
,
s
.
length
(),
length
,
' '
);
return
new
String
(
res
);
}
...
...
@@ -70,10 +68,26 @@ public class ValueStringFixed extends ValueString {
* @return the value
*/
public
static
ValueStringFixed
get
(
String
s
)
{
// Use the special precision constant PRECISION_TRIM to indicate
// default H2 behaviour of trimming the value.
return
get
(
s
,
PRECISION_TRIM
,
null
);
}
/**
* Get or create a fixed length string value for the given string.
* <p>
* This method will use a {@link Mode}-specific conversion when <code>mode</code> is not <code>null</code>.
* Otherwise it will use the default H2 behaviour of trimming the given string if <code>precision</code>
* is not {@link #PRECISION_DO_NOT_TRIM}.
*
* @param s the string
* @param precision if the {@link Mode#padFixedLengthStrings} indicates that strings should be padded, this
* defines the overall length of the (potentially padded) string.
* If the special constant {@link #PRECISION_DO_NOT_TRIM} is used the value will not be trimmed.
* @return the value
*/
public
static
ValueStringFixed
get
(
String
s
,
int
precision
,
Mode
mode
)
{
if
(
mode
!=
null
&&
mode
.
padFixedStrings
&&
precision
<
Integer
.
MAX_VALUE
)
{
if
(
mode
!=
null
&&
mode
.
padFixed
Length
Strings
&&
precision
<
Integer
.
MAX_VALUE
)
{
s
=
rightPadWithSpaces
(
s
,
precision
);
}
else
if
(
precision
!=
PRECISION_DO_NOT_TRIM
)
{
s
=
trimRight
(
s
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论