Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
deaf41b3
提交
deaf41b3
authored
3月 20, 2017
作者:
Max Englander
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
enum-support: clean up
上级
9cc7cb9a
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
3 行增加
和
16 行删除
+3
-16
TcpServerThread.java
h2/src/main/org/h2/server/TcpServerThread.java
+0
-1
TableFilter.java
h2/src/main/org/h2/table/TableFilter.java
+0
-1
DataType.java
h2/src/main/org/h2/value/DataType.java
+2
-2
Value.java
h2/src/main/org/h2/value/Value.java
+1
-12
没有找到文件。
h2/src/main/org/h2/server/TcpServerThread.java
浏览文件 @
deaf41b3
...
@@ -38,7 +38,6 @@ import org.h2.util.StringUtils;
...
@@ -38,7 +38,6 @@ import org.h2.util.StringUtils;
import
org.h2.value.Transfer
;
import
org.h2.value.Transfer
;
import
org.h2.value.Value
;
import
org.h2.value.Value
;
import
org.h2.value.ValueLobDb
;
import
org.h2.value.ValueLobDb
;
import
org.h2.value.ValueString
;
/**
/**
* One server thread is opened per client connection.
* One server thread is opened per client connection.
...
...
h2/src/main/org/h2/table/TableFilter.java
浏览文件 @
deaf41b3
...
@@ -32,7 +32,6 @@ import org.h2.util.StatementBuilder;
...
@@ -32,7 +32,6 @@ import org.h2.util.StatementBuilder;
import
org.h2.util.StringUtils
;
import
org.h2.util.StringUtils
;
import
org.h2.value.Value
;
import
org.h2.value.Value
;
import
org.h2.value.ValueLong
;
import
org.h2.value.ValueLong
;
import
org.h2.value.ValueString
;
import
org.h2.value.ValueNull
;
import
org.h2.value.ValueNull
;
/**
/**
...
...
h2/src/main/org/h2/value/DataType.java
浏览文件 @
deaf41b3
...
@@ -1179,8 +1179,8 @@ public class DataType {
...
@@ -1179,8 +1179,8 @@ public class DataType {
* @return true if the value type is a String type
* @return true if the value type is a String type
*/
*/
public
static
boolean
isStringType
(
int
type
)
{
public
static
boolean
isStringType
(
int
type
)
{
if
(
type
==
Value
.
STRING
if
(
type
==
Value
.
STRING
||
type
==
Value
.
STRING_FIXED
||
type
==
Value
.
STRING_
FIXED
||
type
==
Value
.
STRING_
IGNORECASE
)
{
||
type
==
Value
.
STRING_IGNORECASE
)
{
return
true
;
return
true
;
}
}
return
false
;
return
false
;
...
...
h2/src/main/org/h2/value/Value.java
浏览文件 @
deaf41b3
...
@@ -18,7 +18,6 @@ import java.sql.SQLException;
...
@@ -18,7 +18,6 @@ import java.sql.SQLException;
import
java.sql.Time
;
import
java.sql.Time
;
import
java.sql.Timestamp
;
import
java.sql.Timestamp
;
import
java.sql.Types
;
import
java.sql.Types
;
import
java.util.Set
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Constants
;
import
org.h2.engine.SysProperties
;
import
org.h2.engine.SysProperties
;
...
@@ -986,7 +985,7 @@ public abstract class Value {
...
@@ -986,7 +985,7 @@ public abstract class Value {
}
}
}
catch
(
NumberFormatException
e
)
{
}
catch
(
NumberFormatException
e
)
{
throw
DbException
.
get
(
throw
DbException
.
get
(
ErrorCode
.
DATA_CONVERSION_ERROR_1
,
e
,
getString
()
+
" type="
+
getType
()
);
ErrorCode
.
DATA_CONVERSION_ERROR_1
,
e
,
getString
());
}
}
}
}
...
@@ -1136,16 +1135,6 @@ public abstract class Value {
...
@@ -1136,16 +1135,6 @@ public abstract class Value {
// nothing to do
// nothing to do
}
}
/**
* Check to see if this value is one of the given permitted values.
*
* @param permittedValues the permitted values
* @return true if this value is one of the permitted values
*/
public
boolean
checkPermitted
(
Set
<
String
>
permittedValues
)
{
return
permittedValues
.
contains
(
getString
());
}
/**
/**
* Check if the precision is smaller or equal than the given precision.
* Check if the precision is smaller or equal than the given precision.
*
*
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论