Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
162e190d
提交
162e190d
authored
6月 27, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use DataType.isLargeObject() and isStringType() in more places
上级
4dac32b2
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
14 行增加
和
11 行删除
+14
-11
Analyze.java
h2/src/main/org/h2/command/ddl/Analyze.java
+2
-2
Session.java
h2/src/main/org/h2/engine/Session.java
+2
-1
CompareLike.java
h2/src/main/org/h2/expression/CompareLike.java
+2
-3
BaseIndex.java
h2/src/main/org/h2/index/BaseIndex.java
+2
-2
ResultTempTable.java
h2/src/main/org/h2/result/ResultTempTable.java
+2
-1
RowList.java
h2/src/main/org/h2/result/RowList.java
+2
-1
TcpServerThread.java
h2/src/main/org/h2/server/TcpServerThread.java
+2
-1
没有找到文件。
h2/src/main/org/h2/command/ddl/Analyze.java
浏览文件 @
162e190d
...
...
@@ -17,6 +17,7 @@ import org.h2.table.Column;
import
org.h2.table.Table
;
import
org.h2.table.TableType
;
import
org.h2.util.StatementBuilder
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueInt
;
import
org.h2.value.ValueNull
;
...
...
@@ -104,8 +105,7 @@ public class Analyze extends DefineCommand {
StatementBuilder
buff
=
new
StatementBuilder
(
"SELECT "
);
for
(
Column
col
:
columns
)
{
buff
.
appendExceptFirst
(
", "
);
int
type
=
col
.
getType
();
if
(
type
==
Value
.
BLOB
||
type
==
Value
.
CLOB
)
{
if
(
DataType
.
isLargeObject
(
col
.
getType
()))
{
// can not index LOB columns, so calculating
// the selectivity is not required
buff
.
append
(
"MAX(NULL)"
);
...
...
h2/src/main/org/h2/engine/Session.java
浏览文件 @
162e190d
...
...
@@ -50,6 +50,7 @@ import org.h2.util.ColumnNamerConfiguration;
import
org.h2.util.CurrentTimestamp
;
import
org.h2.util.SmallLRUCache
;
import
org.h2.util.Utils
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueArray
;
import
org.h2.value.ValueLong
;
...
...
@@ -1701,7 +1702,7 @@ public class Session extends SessionWithState implements TransactionStore.Rollba
@Override
public
void
addTemporaryLob
(
Value
v
)
{
if
(
v
.
getType
()
!=
Value
.
CLOB
&&
v
.
getType
()
!=
Value
.
BLOB
)
{
if
(
!
DataType
.
isLargeObject
(
v
.
getType
())
)
{
return
;
}
if
(
v
.
getTableId
()
==
LobStorageFrontend
.
TABLE_RESULT
...
...
h2/src/main/org/h2/expression/CompareLike.java
浏览文件 @
162e190d
...
...
@@ -15,6 +15,7 @@ import org.h2.message.DbException;
import
org.h2.table.ColumnResolver
;
import
org.h2.table.TableFilter
;
import
org.h2.value.CompareMode
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueBoolean
;
import
org.h2.value.ValueNull
;
...
...
@@ -198,9 +199,7 @@ public class CompareLike extends Condition {
// can't use an index
return
;
}
int
dataType
=
l
.
getColumn
().
getType
();
if
(
dataType
!=
Value
.
STRING
&&
dataType
!=
Value
.
STRING_IGNORECASE
&&
dataType
!=
Value
.
STRING_FIXED
)
{
if
(!
DataType
.
isStringType
(
l
.
getColumn
().
getType
()))
{
// column is not a varchar - can't use the index
return
;
}
...
...
h2/src/main/org/h2/index/BaseIndex.java
浏览文件 @
162e190d
...
...
@@ -23,6 +23,7 @@ import org.h2.table.Table;
import
org.h2.table.TableFilter
;
import
org.h2.util.StatementBuilder
;
import
org.h2.util.StringUtils
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueNull
;
...
...
@@ -72,8 +73,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
*/
protected
static
void
checkIndexColumnTypes
(
IndexColumn
[]
columns
)
{
for
(
IndexColumn
c
:
columns
)
{
int
type
=
c
.
column
.
getType
();
if
(
type
==
Value
.
CLOB
||
type
==
Value
.
BLOB
)
{
if
(
DataType
.
isLargeObject
(
c
.
column
.
getType
()))
{
throw
DbException
.
getUnsupportedException
(
"Index on BLOB or CLOB column: "
+
c
.
column
.
getCreateSQL
());
}
...
...
h2/src/main/org/h2/result/ResultTempTable.java
浏览文件 @
162e190d
...
...
@@ -23,6 +23,7 @@ import org.h2.table.Column;
import
org.h2.table.IndexColumn
;
import
org.h2.table.Table
;
import
org.h2.util.TempFileDeleter
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueNull
;
...
...
@@ -118,7 +119,7 @@ public class ResultTempTable implements ResultExternal {
for
(
int
i
=
0
;
i
<
expressions
.
length
;
i
++)
{
int
type
=
expressions
[
i
].
getType
();
Column
col
=
new
Column
(
COLUMN_NAME
+
i
,
type
);
if
(
type
==
Value
.
CLOB
||
type
==
Value
.
BLOB
)
{
if
(
DataType
.
isLargeObject
(
type
)
)
{
containsLob
=
true
;
}
data
.
columns
.
add
(
col
);
...
...
h2/src/main/org/h2/result/RowList.java
浏览文件 @
162e190d
...
...
@@ -13,6 +13,7 @@ import org.h2.engine.Session;
import
org.h2.store.Data
;
import
org.h2.store.FileStore
;
import
org.h2.util.Utils
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
/**
...
...
@@ -63,7 +64,7 @@ public class RowList {
buff
.
writeByte
((
byte
)
0
);
}
else
{
buff
.
writeByte
((
byte
)
1
);
if
(
v
.
getType
()
==
Value
.
CLOB
||
v
.
getType
()
==
Value
.
BLOB
)
{
if
(
DataType
.
isLargeObject
(
v
.
getType
())
)
{
// need to keep a reference to temporary lobs,
// otherwise the temp file is deleted
if
(
v
.
getSmall
()
==
null
&&
v
.
getTableId
()
==
0
)
{
...
...
h2/src/main/org/h2/server/TcpServerThread.java
浏览文件 @
162e190d
...
...
@@ -37,6 +37,7 @@ import org.h2.store.LobStorageInterface;
import
org.h2.util.IOUtils
;
import
org.h2.util.SmallLRUCache
;
import
org.h2.util.SmallMap
;
import
org.h2.value.DataType
;
import
org.h2.value.Transfer
;
import
org.h2.value.Value
;
import
org.h2.value.ValueLobDb
;
...
...
@@ -572,7 +573,7 @@ public class TcpServerThread implements Runnable {
}
private
void
writeValue
(
Value
v
)
throws
IOException
{
if
(
v
.
getType
()
==
Value
.
CLOB
||
v
.
getType
()
==
Value
.
BLOB
)
{
if
(
DataType
.
isLargeObject
(
v
.
getType
())
)
{
if
(
v
instanceof
ValueLobDb
)
{
ValueLobDb
lob
=
(
ValueLobDb
)
v
;
if
(
lob
.
isStored
())
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论