Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
9015bc1e
提交
9015bc1e
authored
2月 18, 2017
作者:
Max Englander
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
store enums as ints
上级
ef597352
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
40 行增加
和
32 行删除
+40
-32
Parser.java
h2/src/main/org/h2/command/Parser.java
+6
-11
Column.java
h2/src/main/org/h2/table/Column.java
+24
-15
DataType.java
h2/src/main/org/h2/value/DataType.java
+4
-4
Value.java
h2/src/main/org/h2/value/Value.java
+6
-2
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
9015bc1e
...
...
@@ -4122,7 +4122,7 @@ public class Parser {
}
long
precision
=
-
1
;
int
displaySize
=
-
1
;
java
.
util
.
Set
<
String
>
permittedValues
=
new
HashSet
<
>();
java
.
util
.
List
<
String
>
enumerators
=
new
ArrayList
<
String
>();
int
scale
=
-
1
;
String
comment
=
null
;
Column
templateColumn
=
null
;
...
...
@@ -4196,11 +4196,11 @@ public class Parser {
}
read
(
")"
);
}
}
else
if
(
dataType
.
supportsPermittedValues
)
{
}
else
if
(
dataType
.
enumerated
)
{
if
(
readIf
(
"("
))
{
permittedValue
s
.
add
(
readString
());
enumerator
s
.
add
(
readString
());
while
(
readIf
(
","
))
permittedValue
s
.
add
(
readString
());
enumerator
s
.
add
(
readString
());
read
(
")"
);
}
}
else
if
(
readIf
(
"("
))
{
...
...
@@ -4223,13 +4223,8 @@ public class Parser {
throw
DbException
.
get
(
ErrorCode
.
INVALID_VALUE_SCALE_PRECISION
,
Integer
.
toString
(
scale
),
Long
.
toString
(
precision
));
}
Column
column
;
if
(
permittedValues
.
isEmpty
())
{
column
=
new
Column
(
columnName
,
type
,
precision
,
scale
,
displaySize
);
}
else
{
column
=
new
Column
(
columnName
,
type
,
permittedValues
);
}
Column
column
=
new
Column
(
columnName
,
type
,
precision
,
scale
,
displaySize
,
enumerators
);
if
(
templateColumn
!=
null
)
{
column
.
setNullable
(
templateColumn
.
isNullable
());
column
.
setDefaultExpression
(
session
,
...
...
h2/src/main/org/h2/table/Column.java
浏览文件 @
9015bc1e
...
...
@@ -7,7 +7,7 @@ package org.h2.table;
import
java.sql.ResultSetMetaData
;
import
java.util.Iterator
;
import
java.util.
Se
t
;
import
java.util.
Lis
t
;
import
org.h2.api.ErrorCode
;
import
org.h2.command.Parser
;
import
org.h2.engine.Constants
;
...
...
@@ -68,7 +68,7 @@ public class Column {
private
final
int
type
;
private
long
precision
;
private
int
scale
;
private
Set
<
String
>
permittedValue
s
;
private
List
<
String
>
enumerator
s
;
private
int
displaySize
;
private
Table
table
;
private
String
name
;
...
...
@@ -94,8 +94,8 @@ public class Column {
this
(
name
,
type
,
-
1
,
-
1
,
-
1
,
null
);
}
public
Column
(
String
name
,
int
type
,
Set
<
String
>
permittedValue
s
)
{
this
(
name
,
type
,
-
1
,
-
1
,
-
1
,
permittedValue
s
);
public
Column
(
String
name
,
int
type
,
List
<
String
>
enumerator
s
)
{
this
(
name
,
type
,
-
1
,
-
1
,
-
1
,
enumerator
s
);
}
public
Column
(
String
name
,
int
type
,
long
precision
,
int
scale
,
...
...
@@ -104,7 +104,7 @@ public class Column {
}
public
Column
(
String
name
,
int
type
,
long
precision
,
int
scale
,
int
displaySize
,
Set
<
String
>
permittedValue
s
)
{
int
displaySize
,
List
<
String
>
enumerator
s
)
{
this
.
name
=
name
;
this
.
type
=
type
;
if
(
precision
==
-
1
&&
scale
==
-
1
&&
displaySize
==
-
1
&&
type
!=
Value
.
UNKNOWN
)
{
...
...
@@ -116,7 +116,7 @@ public class Column {
this
.
precision
=
precision
;
this
.
scale
=
scale
;
this
.
displaySize
=
displaySize
;
this
.
permittedValues
=
permittedValue
s
;
this
.
enumerators
=
enumerator
s
;
}
@Override
...
...
@@ -146,7 +146,7 @@ public class Column {
}
public
Column
getClone
()
{
Column
newColumn
=
new
Column
(
name
,
type
,
precision
,
scale
,
displaySize
,
permittedValue
s
);
Column
newColumn
=
new
Column
(
name
,
type
,
precision
,
scale
,
displaySize
,
enumerator
s
);
newColumn
.
copy
(
this
);
return
newColumn
;
}
...
...
@@ -270,12 +270,12 @@ public class Column {
nullable
=
b
;
}
public
Set
<
String
>
getPermittedValue
s
()
{
return
permittedValue
s
;
public
List
<
String
>
getEnumerator
s
()
{
return
enumerator
s
;
}
public
void
set
PermittedValues
(
Set
<
String
>
permittedValue
s
)
{
this
.
permittedValues
=
permittedValue
s
;
public
void
set
Enumerators
(
List
<
String
>
enumerator
s
)
{
this
.
enumerators
=
enumerator
s
;
}
/**
...
...
@@ -357,14 +357,23 @@ public class Column {
getCreateSQL
(),
s
+
" ("
+
value
.
getPrecision
()
+
")"
);
}
}
if
(
permittedValues
!=
null
)
{
if
(!
value
.
checkPermitted
(
permittedValues
))
{
if
(!
enumerators
.
isEmpty
())
{
int
index
;
if
(
DataType
.
isStringType
(
value
.
getType
()))
{
index
=
enumerators
.
indexOf
(
value
.
getString
());
}
else
{
index
=
value
.
getInt
()
<
enumerators
.
size
()
?
value
.
getInt
()
:
-
1
;
}
if
(
index
==
-
1
)
{
String
s
=
value
.
getTraceSQL
();
if
(
s
.
length
()
>
127
)
{
s
=
s
.
substring
(
0
,
128
)
+
"..."
;
}
throw
DbException
.
get
(
ErrorCode
.
VALUE_NOT_PERMITTED
,
getCreateSQL
(),
s
+
" ("
+
value
.
getString
()
+
")"
);
}
else
{
value
=
ValueInt
.
get
(
index
);
}
}
updateSequenceIfRequired
(
session
,
value
);
...
...
@@ -458,7 +467,7 @@ public class Column {
break
;
case
Value
.
ENUM
:
buff
.
append
(
'('
);
Iterator
<
String
>
it
=
permittedValue
s
.
iterator
();
Iterator
<
String
>
it
=
enumerator
s
.
iterator
();
while
(
it
.
hasNext
())
{
buff
.
append
(
'\''
).
append
(
it
.
next
()).
append
(
'\''
);
if
(
it
.
hasNext
())
{
...
...
@@ -774,7 +783,7 @@ public class Column {
displaySize
=
source
.
displaySize
;
name
=
source
.
name
;
precision
=
source
.
precision
;
permittedValues
=
source
.
permittedValue
s
;
enumerators
=
source
.
enumerator
s
;
scale
=
source
.
scale
;
// table is not set
// columnId is not set
...
...
h2/src/main/org/h2/value/DataType.java
浏览文件 @
9015bc1e
...
...
@@ -143,7 +143,7 @@ public class DataType {
/**
* If permitted values are supports.
*/
public
boolean
supportsPermittedValues
;
public
boolean
enumerated
;
/**
* If the precision parameter is supported.
...
...
@@ -416,7 +416,7 @@ public class DataType {
dt
.
params
=
dataType
.
params
;
dt
.
prefix
=
dataType
.
prefix
;
dt
.
suffix
=
dataType
.
suffix
;
dt
.
supportsPermittedValues
=
dataType
.
supportsPermittedValues
;
dt
.
enumerated
=
dataType
.
enumerated
;
dt
.
supportsPrecision
=
dataType
.
supportsPrecision
;
dt
.
supportsScale
=
dataType
.
supportsScale
;
dt
.
defaultPrecision
=
dataType
.
defaultPrecision
;
...
...
@@ -472,7 +472,7 @@ public class DataType {
private
static
DataType
createEnum
()
{
DataType
dataType
=
createString
(
false
);
dataType
.
supportsPermittedValues
=
true
;
dataType
.
enumerated
=
true
;
dataType
.
supportsPrecision
=
false
;
dataType
.
supportsScale
=
false
;
return
dataType
;
...
...
@@ -1183,7 +1183,7 @@ public class DataType {
* @return true if the value type is a String type
*/
public
static
boolean
isStringType
(
int
type
)
{
if
(
type
==
Value
.
ENUM
||
type
==
Value
.
STRING
if
(
type
==
Value
.
STRING
||
type
==
Value
.
STRING_FIXED
||
type
==
Value
.
STRING_IGNORECASE
)
{
return
true
;
}
...
...
h2/src/main/org/h2/value/Value.java
浏览文件 @
9015bc1e
...
...
@@ -852,6 +852,11 @@ public abstract class Value {
}
break
;
}
case
ENUM:
switch
(
getType
())
{
case
INT:
return
this
;
}
case
BLOB:
{
switch
(
getType
())
{
case
BYTES:
...
...
@@ -944,6 +949,7 @@ public abstract class Value {
case
JAVA_OBJECT:
return
ValueJavaObject
.
getNoCopy
(
null
,
StringUtils
.
convertHexToBytes
(
s
.
trim
()),
getDataHandler
());
case
ENUM:
case
STRING:
return
ValueString
.
get
(
s
);
case
STRING_IGNORECASE:
...
...
@@ -973,8 +979,6 @@ public abstract class Value {
return
ValueUuid
.
get
(
s
);
case
GEOMETRY:
return
ValueGeometry
.
get
(
s
);
case
ENUM:
return
ValueEnum
.
get
(
s
);
default
:
throw
DbException
.
throwInternalError
(
"type="
+
targetType
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论