Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a75bf79a
提交
a75bf79a
authored
6月 26, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Cleanup.
上级
9f217915
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
64 行增加
和
52 行删除
+64
-52
Parser.java
h2/src/main/org/h2/command/Parser.java
+1
-1
CreateIndex.java
h2/src/main/org/h2/command/ddl/CreateIndex.java
+1
-1
CreateTable.java
h2/src/main/org/h2/command/ddl/CreateTable.java
+1
-1
CreateTableData.java
h2/src/main/org/h2/command/ddl/CreateTableData.java
+1
-1
ErrorCode.java
h2/src/main/org/h2/constant/ErrorCode.java
+2
-2
Comparison.java
h2/src/main/org/h2/expression/Comparison.java
+3
-2
BaseIndex.java
h2/src/main/org/h2/index/BaseIndex.java
+1
-0
IndexCondition.java
h2/src/main/org/h2/index/IndexCondition.java
+2
-2
IndexCursor.java
h2/src/main/org/h2/index/IndexCursor.java
+3
-2
IndexType.java
h2/src/main/org/h2/index/IndexType.java
+2
-1
SpatialIndex.java
h2/src/main/org/h2/index/SpatialIndex.java
+30
-26
SpatialTreeIndex.java
h2/src/main/org/h2/index/SpatialTreeIndex.java
+17
-13
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
a75bf79a
...
@@ -3871,7 +3871,7 @@ public class Parser {
...
@@ -3871,7 +3871,7 @@ public class Parser {
}
}
return
parseCreateTable
(
false
,
false
,
cached
);
return
parseCreateTable
(
false
,
false
,
cached
);
}
else
{
}
else
{
boolean
hash
=
false
,
primaryKey
=
false
,
unique
=
false
,
spatial
=
false
;
;
boolean
hash
=
false
,
primaryKey
=
false
,
unique
=
false
,
spatial
=
false
;
String
indexName
=
null
;
String
indexName
=
null
;
Schema
oldSchema
=
null
;
Schema
oldSchema
=
null
;
boolean
ifNotExists
=
false
;
boolean
ifNotExists
=
false
;
...
...
h2/src/main/org/h2/command/ddl/CreateIndex.java
浏览文件 @
a75bf79a
h2/src/main/org/h2/command/ddl/CreateTable.java
浏览文件 @
a75bf79a
h2/src/main/org/h2/command/ddl/CreateTableData.java
浏览文件 @
a75bf79a
h2/src/main/org/h2/constant/ErrorCode.java
浏览文件 @
a75bf79a
h2/src/main/org/h2/expression/Comparison.java
浏览文件 @
a75bf79a
...
@@ -101,7 +101,8 @@ public class Comparison extends Condition {
...
@@ -101,7 +101,8 @@ public class Comparison extends Condition {
public
static
final
int
IN_QUERY
=
10
;
public
static
final
int
IN_QUERY
=
10
;
/**
/**
* This is a pseudo comparison type that is only used for spatial index conditions.
* This is a pseudo comparison type that is only used for spatial index
* conditions.
*/
*/
public
static
final
int
SPATIAL_INTERSECTS
=
11
;
public
static
final
int
SPATIAL_INTERSECTS
=
11
;
...
...
h2/src/main/org/h2/index/BaseIndex.java
浏览文件 @
a75bf79a
...
@@ -90,6 +90,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
...
@@ -90,6 +90,7 @@ public abstract class BaseIndex extends SchemaObjectBase implements Index {
* Create a duplicate key exception with a message that contains the index
* Create a duplicate key exception with a message that contains the index
* name.
* name.
*
*
* @param key the key values
* @return the exception
* @return the exception
*/
*/
protected
DbException
getDuplicateKeyException
(
String
key
)
{
protected
DbException
getDuplicateKeyException
(
String
key
)
{
...
...
h2/src/main/org/h2/index/IndexCondition.java
浏览文件 @
a75bf79a
h2/src/main/org/h2/index/IndexCursor.java
浏览文件 @
a75bf79a
...
@@ -148,7 +148,8 @@ public class IndexCursor implements Cursor {
...
@@ -148,7 +148,8 @@ public class IndexCursor implements Cursor {
}
}
if
(!
alwaysFalse
)
{
if
(!
alwaysFalse
)
{
if
(
intersects
!=
null
&&
index
instanceof
SpatialTreeIndex
)
{
if
(
intersects
!=
null
&&
index
instanceof
SpatialTreeIndex
)
{
cursor
=
((
SpatialTreeIndex
)
index
).
findByGeometry
(
tableFilter
,
intersects
);
cursor
=
((
SpatialTreeIndex
)
index
).
findByGeometry
(
tableFilter
,
intersects
);
}
else
{
}
else
{
cursor
=
index
.
find
(
tableFilter
,
start
,
end
);
cursor
=
index
.
find
(
tableFilter
,
start
,
end
);
}
}
...
...
h2/src/main/org/h2/index/IndexType.java
浏览文件 @
a75bf79a
...
@@ -60,6 +60,7 @@ public class IndexType {
...
@@ -60,6 +60,7 @@ public class IndexType {
*
*
* @param persistent if the index is persistent
* @param persistent if the index is persistent
* @param hash if a hash index should be used
* @param hash if a hash index should be used
* @param spatial if a spatial index should be used
* @return the index type
* @return the index type
*/
*/
public
static
IndexType
createNonUnique
(
boolean
persistent
,
boolean
hash
,
boolean
spatial
)
{
public
static
IndexType
createNonUnique
(
boolean
persistent
,
boolean
hash
,
boolean
spatial
)
{
...
...
h2/src/main/org/h2/index/SpatialIndex.java
浏览文件 @
a75bf79a
...
@@ -10,17 +10,21 @@ import org.h2.result.SearchRow;
...
@@ -10,17 +10,21 @@ import org.h2.result.SearchRow;
import
org.h2.table.TableFilter
;
import
org.h2.table.TableFilter
;
/**
/**
* A spatial index. Spatial indexes are used to speed up searching spatial/geometric data.
* A spatial index. Spatial indexes are used to speed up searching
* spatial/geometric data.
*/
*/
public
interface
SpatialIndex
extends
Index
{
public
interface
SpatialIndex
extends
Index
{
/**
/**
* Find a row or a list of rows and create a cursor to iterate over the result.
* Find a row or a list of rows and create a cursor to iterate over the
* result.
*
*
* @param filter the table filter (which possibly knows
* @param filter the table filter (which possibly knows about additional
* about additional conditions)
* conditions)
* @param intersection the geometry which values should intersect with, or null for anything
* @param intersection the geometry which values should intersect with, or
* null for anything
* @return the cursor to iterate over the results
* @return the cursor to iterate over the results
*/
*/
Cursor
findByGeometry
(
TableFilter
filter
,
SearchRow
intersection
);
Cursor
findByGeometry
(
TableFilter
filter
,
SearchRow
intersection
);
}
}
h2/src/main/org/h2/index/SpatialTreeIndex.java
浏览文件 @
a75bf79a
...
@@ -104,20 +104,21 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
...
@@ -104,20 +104,21 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
private
Cursor
find
()
{
private
Cursor
find
()
{
// FIXME: ideally I need external iterators, but let's see if we can get
// TODO use an external iterator,
// it working first
// but let's see if we can get it working first
// FIXME: in the context of a spatial index, a query that uses ">" or "<" has no real meaning, so for now just ignore
// TODO in the context of a spatial index,
// a query that uses ">" or "<" has no real meaning, so for now just ignore
// it and return all rows
// it and return all rows
java
.
util
.
List
<
Row
>
list
=
root
.
queryAll
();
List
<
Row
>
list
=
root
.
queryAll
();
return
new
ListCursor
(
list
,
true
/*first*/
);
return
new
ListCursor
(
list
,
true
/*first*/
);
}
}
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
@Override
@Override
public
Cursor
findByGeometry
(
TableFilter
filter
,
SearchRow
intersection
)
{
public
Cursor
findByGeometry
(
TableFilter
filter
,
SearchRow
intersection
)
{
//
FIXME: ideally I need external iterators, but let's see if we can get
//
TODO use an external iterator,
// it working first
//
but let's see if we can get
it working first
java
.
util
.
List
<
Row
>
list
;
List
<
Row
>
list
;
if
(
intersection
!=
null
)
{
if
(
intersection
!=
null
)
{
list
=
root
.
query
(
getEnvelope
(
intersection
));
list
=
root
.
query
(
getEnvelope
(
intersection
));
}
else
{
}
else
{
...
@@ -163,8 +164,8 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
...
@@ -163,8 +164,8 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
throw
DbException
.
throwInternalError
();
throw
DbException
.
throwInternalError
();
}
}
//
FIXME: ideally I need external iterators, but let's see if we can get
//
TODO use an external iterator,
// it working first
//
but let's see if we can get
it working first
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
List
<
Row
>
list
=
root
.
queryAll
();
List
<
Row
>
list
=
root
.
queryAll
();
...
@@ -186,6 +187,9 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
...
@@ -186,6 +187,9 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
return
0
;
return
0
;
}
}
/**
* A cursor of a fixed list of rows.
*/
private
static
final
class
ListCursor
implements
Cursor
{
private
static
final
class
ListCursor
implements
Cursor
{
private
final
List
<
Row
>
rows
;
private
final
List
<
Row
>
rows
;
private
int
index
;
private
int
index
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论