Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
9e6867b0
提交
9e6867b0
authored
10月 30, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The spatial index now works in MVCC mode when using the MVStore storage.
上级
b5ede1e6
显示空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
436 行增加
和
28 行删除
+436
-28
changelog.html
h2/src/docsrc/html/changelog.html
+1
-0
SpatialTreeIndex.java
h2/src/main/org/h2/index/SpatialTreeIndex.java
+0
-1
MVPrimaryIndex.java
h2/src/main/org/h2/mvstore/db/MVPrimaryIndex.java
+1
-2
MVSecondaryIndex.java
h2/src/main/org/h2/mvstore/db/MVSecondaryIndex.java
+1
-2
MVSpatialIndex.java
h2/src/main/org/h2/mvstore/db/MVSpatialIndex.java
+383
-0
MVTable.java
h2/src/main/org/h2/mvstore/db/MVTable.java
+3
-4
MVTableEngine.java
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
+3
-3
TransactionStore.java
h2/src/main/org/h2/mvstore/db/TransactionStore.java
+6
-7
ValueDataType.java
h2/src/main/org/h2/mvstore/db/ValueDataType.java
+20
-6
MVRTreeMap.java
h2/src/main/org/h2/mvstore/rtree/MVRTreeMap.java
+1
-1
SpatialKey.java
h2/src/main/org/h2/mvstore/rtree/SpatialKey.java
+16
-1
TestSpatial.java
h2/src/test/org/h2/test/db/TestSpatial.java
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
9e6867b0
...
...
@@ -21,6 +21,7 @@ Change Log
<ul><li>
Subqueries or views with "order by" an alias expression could not be executed
due to a regression introduced in version 1.3.174.
</li><li>
Issue 73: MySQL compatibility: support REPLACE, patch by Cemo Koc.
</li><li>
The spatial index now works in MVCC mode when using the MVStore storage.
</li><li>
MVStore: concurrency problems have been fixed.
</li><li>
Improve error message when dropping an index that belongs to a constraint,
specify constraint in error message.
...
...
h2/src/main/org/h2/index/SpatialTreeIndex.java
浏览文件 @
9e6867b0
...
...
@@ -194,7 +194,6 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
@Override
public
void
remove
(
Session
session
)
{
if
(!
treeMap
.
isClosed
())
{
MVStore
store
=
session
.
getDatabase
().
getMvStore
().
getStore
();
store
.
removeMap
(
treeMap
);
}
}
...
...
h2/src/main/org/h2/mvstore/db/MVPrimaryIndex.java
浏览文件 @
9e6867b0
...
...
@@ -379,8 +379,7 @@ public class MVPrimaryIndex extends BaseIndex {
@Override
public
boolean
previous
()
{
// TODO previous
return
false
;
throw
DbException
.
getUnsupportedException
(
"previous"
);
}
}
...
...
h2/src/main/org/h2/mvstore/db/MVSecondaryIndex.java
浏览文件 @
9e6867b0
...
...
@@ -342,8 +342,7 @@ public class MVSecondaryIndex extends BaseIndex {
@Override
public
boolean
previous
()
{
// TODO previous
return
false
;
throw
DbException
.
getUnsupportedException
(
"previous"
);
}
}
...
...
h2/src/main/org/h2/mvstore/db/MVSpatialIndex.java
0 → 100644
浏览文件 @
9e6867b0
/*
* Copyright 2004-2013 H2 Group. Multiple-Licensed under the H2 License, Version
* 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html). Initial Developer: H2 Group
*/
package
org
.
h2
.
mvstore
.
db
;
import
java.util.Iterator
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Database
;
import
org.h2.engine.Session
;
import
org.h2.index.BaseIndex
;
import
org.h2.index.Cursor
;
import
org.h2.index.IndexCondition
;
import
org.h2.index.IndexType
;
import
org.h2.index.SpatialIndex
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.db.TransactionStore.Transaction
;
import
org.h2.mvstore.db.TransactionStore.TransactionMap
;
import
org.h2.mvstore.db.TransactionStore.VersionedValue
;
import
org.h2.mvstore.db.TransactionStore.VersionedValueType
;
import
org.h2.mvstore.rtree.MVRTreeMap
;
import
org.h2.mvstore.rtree.MVRTreeMap.RTreeCursor
;
import
org.h2.mvstore.rtree.SpatialKey
;
import
org.h2.result.Row
;
import
org.h2.result.SearchRow
;
import
org.h2.result.SortOrder
;
import
org.h2.table.Column
;
import
org.h2.table.IndexColumn
;
import
org.h2.table.TableFilter
;
import
org.h2.value.Value
;
import
org.h2.value.ValueGeometry
;
import
org.h2.value.ValueLong
;
import
com.vividsolutions.jts.geom.Envelope
;
import
com.vividsolutions.jts.geom.Geometry
;
/**
* This is an index based on a MVRTreeMap.
*
* @author Thomas Mueller
* @author Noel Grandin
* @author Nicolas Fortin, Atelier SIG, IRSTV FR CNRS 24888
*/
public
class
MVSpatialIndex
extends
BaseIndex
implements
SpatialIndex
{
/**
* The multi-value table.
*/
final
MVTable
mvTable
;
private
final
String
mapName
;
private
TransactionMap
<
SpatialKey
,
Value
>
dataMap
;
private
MVRTreeMap
<
VersionedValue
>
spatialMap
;
/**
* Constructor.
*
* @param table the table instance
* @param id the index id
* @param indexName the index name
* @param columns the indexed columns (only one geometry column allowed)
* @param indexType the index type (only spatial index)
*/
public
MVSpatialIndex
(
Database
db
,
MVTable
table
,
int
id
,
String
indexName
,
IndexColumn
[]
columns
,
IndexType
indexType
)
{
if
(
columns
.
length
!=
1
)
{
throw
DbException
.
getUnsupportedException
(
"Can only index one column"
);
}
IndexColumn
col
=
columns
[
0
];
if
((
col
.
sortType
&
SortOrder
.
DESCENDING
)
!=
0
)
{
throw
DbException
.
getUnsupportedException
(
"Cannot index in descending order"
);
}
if
((
col
.
sortType
&
SortOrder
.
NULLS_FIRST
)
!=
0
)
{
throw
DbException
.
getUnsupportedException
(
"Nulls first is not supported"
);
}
if
((
col
.
sortType
&
SortOrder
.
NULLS_LAST
)
!=
0
)
{
throw
DbException
.
getUnsupportedException
(
"Nulls last is not supported"
);
}
if
(
col
.
column
.
getType
()
!=
Value
.
GEOMETRY
)
{
throw
DbException
.
getUnsupportedException
(
"Spatial index on non-geometry column, "
+
col
.
column
.
getCreateSQL
());
}
this
.
mvTable
=
table
;
initBaseIndex
(
table
,
id
,
indexName
,
columns
,
indexType
);
if
(!
database
.
isStarting
())
{
checkIndexColumnTypes
(
columns
);
}
mapName
=
"index."
+
getId
();
ValueDataType
vt
=
new
ValueDataType
(
null
,
null
,
null
);
VersionedValueType
valueType
=
new
VersionedValueType
(
vt
);
MVRTreeMap
.
Builder
<
VersionedValue
>
mapBuilder
=
new
MVRTreeMap
.
Builder
<
VersionedValue
>().
valueType
(
valueType
);
spatialMap
=
db
.
getMvStore
().
getStore
().
openMap
(
mapName
,
mapBuilder
);
dataMap
=
mvTable
.
getTransaction
(
null
).
openMap
(
spatialMap
);
}
@Override
public
void
close
(
Session
session
)
{
// ok
}
@Override
public
void
add
(
Session
session
,
Row
row
)
{
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
SpatialKey
key
=
getKey
(
row
);
if
(
indexType
.
isUnique
())
{
// this will detect committed entries only
RTreeCursor
cursor
=
spatialMap
.
findContainedKeys
(
key
);
Iterator
<
SpatialKey
>
it
=
map
.
wrapIterator
(
cursor
,
false
);
while
(
it
.
hasNext
())
{
SpatialKey
k
=
it
.
next
();
if
(
k
.
equalsIgnoringId
(
key
))
{
throw
getDuplicateKeyException
(
key
.
toString
());
}
}
}
try
{
map
.
put
(
key
,
ValueLong
.
get
(
0
));
}
catch
(
IllegalStateException
e
)
{
throw
DbException
.
get
(
ErrorCode
.
CONCURRENT_UPDATE_1
,
table
.
getName
());
}
if
(
indexType
.
isUnique
())
{
// check if there is another (uncommitted) entry
RTreeCursor
cursor
=
spatialMap
.
findContainedKeys
(
key
);
Iterator
<
SpatialKey
>
it
=
map
.
wrapIterator
(
cursor
,
true
);
while
(
it
.
hasNext
())
{
SpatialKey
k
=
it
.
next
();
if
(
k
.
equalsIgnoringId
(
key
))
{
if
(
map
.
isSameTransaction
(
k
))
{
continue
;
}
map
.
remove
(
key
);
if
(
map
.
get
(
k
)
!=
null
)
{
// committed
throw
getDuplicateKeyException
(
k
.
toString
());
}
throw
DbException
.
get
(
ErrorCode
.
CONCURRENT_UPDATE_1
,
table
.
getName
());
}
}
}
}
private
SpatialKey
getKey
(
SearchRow
r
)
{
if
(
r
==
null
)
{
return
null
;
}
Value
v
=
r
.
getValue
(
columnIds
[
0
]);
Geometry
g
=
((
ValueGeometry
)
v
.
convertTo
(
Value
.
GEOMETRY
)).
getGeometry
();
Envelope
env
=
g
.
getEnvelopeInternal
();
return
new
SpatialKey
(
r
.
getKey
(),
(
float
)
env
.
getMinX
(),
(
float
)
env
.
getMaxX
(),
(
float
)
env
.
getMinY
(),
(
float
)
env
.
getMaxY
());
}
@Override
public
void
remove
(
Session
session
,
Row
row
)
{
SpatialKey
key
=
getKey
(
row
);
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
try
{
Value
old
=
map
.
remove
(
key
);
if
(
old
==
null
)
{
throw
DbException
.
get
(
ErrorCode
.
ROW_NOT_FOUND_WHEN_DELETING_1
,
getSQL
()
+
": "
+
row
.
getKey
());
}
}
catch
(
IllegalStateException
e
)
{
throw
DbException
.
get
(
ErrorCode
.
CONCURRENT_UPDATE_1
,
table
.
getName
());
}
}
@Override
public
Cursor
find
(
TableFilter
filter
,
SearchRow
first
,
SearchRow
last
)
{
return
find
(
filter
.
getSession
());
}
@Override
public
Cursor
find
(
Session
session
,
SearchRow
first
,
SearchRow
last
)
{
return
find
(
session
);
}
private
Cursor
find
(
Session
session
)
{
Iterator
<
SpatialKey
>
cursor
=
spatialMap
.
keyIterator
(
null
);
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
Iterator
<
SpatialKey
>
it
=
map
.
wrapIterator
(
cursor
,
false
);
return
new
MVStoreCursor
(
session
,
it
);
}
@Override
public
Cursor
findByGeometry
(
TableFilter
filter
,
SearchRow
intersection
)
{
Session
session
=
filter
.
getSession
();
if
(
intersection
==
null
)
{
return
find
(
session
);
}
Iterator
<
SpatialKey
>
cursor
=
spatialMap
.
findIntersectingKeys
(
getEnvelope
(
intersection
));
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
Iterator
<
SpatialKey
>
it
=
map
.
wrapIterator
(
cursor
,
false
);
return
new
MVStoreCursor
(
session
,
it
);
}
private
SpatialKey
getEnvelope
(
SearchRow
row
)
{
Value
v
=
row
.
getValue
(
columnIds
[
0
]);
Geometry
g
=
((
ValueGeometry
)
v
.
convertTo
(
Value
.
GEOMETRY
)).
getGeometry
();
Envelope
env
=
g
.
getEnvelopeInternal
();
return
new
SpatialKey
(
row
.
getKey
(),
(
float
)
env
.
getMinX
(),
(
float
)
env
.
getMaxX
(),
(
float
)
env
.
getMinY
(),
(
float
)
env
.
getMaxY
());
}
/**
* Get the row with the given index key.
*
* @param array the index key
* @return the row
*/
SearchRow
getRow
(
SpatialKey
key
)
{
SearchRow
searchRow
=
mvTable
.
getTemplateRow
();
searchRow
.
setKey
(
key
.
getId
());
return
searchRow
;
}
@Override
public
MVTable
getTable
()
{
return
mvTable
;
}
@Override
public
double
getCost
(
Session
session
,
int
[]
masks
,
TableFilter
filter
,
SortOrder
sortOrder
)
{
return
getCostRangeIndex
(
masks
,
table
.
getRowCountApproximation
(),
filter
,
sortOrder
);
}
@Override
protected
long
getCostRangeIndex
(
int
[]
masks
,
long
rowCount
,
TableFilter
filter
,
SortOrder
sortOrder
)
{
rowCount
+=
Constants
.
COST_ROW_OFFSET
;
long
cost
=
rowCount
;
if
(
masks
==
null
)
{
return
cost
;
}
for
(
Column
column
:
columns
)
{
int
index
=
column
.
getColumnId
();
int
mask
=
masks
[
index
];
if
((
mask
&
IndexCondition
.
SPATIAL_INTERSECTS
)
!=
0
)
{
cost
=
3
+
rowCount
/
4
;
}
}
return
cost
;
}
@Override
public
void
remove
(
Session
session
)
{
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
if
(!
map
.
isClosed
())
{
Transaction
t
=
mvTable
.
getTransaction
(
session
);
t
.
removeMap
(
map
);
}
}
@Override
public
void
truncate
(
Session
session
)
{
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
map
.
clear
();
}
@Override
public
boolean
canGetFirstOrLast
()
{
return
true
;
}
@Override
public
Cursor
findFirstOrLast
(
Session
session
,
boolean
first
)
{
if
(!
first
)
{
throw
DbException
.
throwInternalError
(
"Spatial Index can only be fetch in ascending order"
);
}
return
find
(
session
);
}
@Override
public
boolean
needRebuild
()
{
try
{
return
dataMap
.
map
.
sizeAsLong
()
==
0
;
}
catch
(
IllegalStateException
e
)
{
throw
DbException
.
get
(
ErrorCode
.
OBJECT_CLOSED
);
}
}
@Override
public
long
getRowCount
(
Session
session
)
{
TransactionMap
<
SpatialKey
,
Value
>
map
=
getMap
(
session
);
return
map
.
sizeAsLong
();
}
@Override
public
long
getRowCountApproximation
()
{
try
{
return
dataMap
.
map
.
sizeAsLong
();
}
catch
(
IllegalStateException
e
)
{
throw
DbException
.
get
(
ErrorCode
.
OBJECT_CLOSED
);
}
}
@Override
public
long
getDiskSpaceUsed
()
{
// TODO estimate disk space usage
return
0
;
}
@Override
public
void
checkRename
()
{
// ok
}
/**
* Get the map to store the data.
*
* @param session the session
* @return the map
*/
TransactionMap
<
SpatialKey
,
Value
>
getMap
(
Session
session
)
{
if
(
session
==
null
)
{
return
dataMap
;
}
Transaction
t
=
mvTable
.
getTransaction
(
session
);
return
dataMap
.
getInstance
(
t
,
Long
.
MAX_VALUE
);
}
/**
* A cursor.
*/
class
MVStoreCursor
implements
Cursor
{
private
final
Session
session
;
private
final
Iterator
<
SpatialKey
>
it
;
private
SpatialKey
current
;
private
SearchRow
searchRow
;
private
Row
row
;
public
MVStoreCursor
(
Session
session
,
Iterator
<
SpatialKey
>
it
)
{
this
.
session
=
session
;
this
.
it
=
it
;
}
@Override
public
Row
get
()
{
if
(
row
==
null
)
{
SearchRow
r
=
getSearchRow
();
if
(
r
!=
null
)
{
row
=
mvTable
.
getRow
(
session
,
r
.
getKey
());
}
}
return
row
;
}
@Override
public
SearchRow
getSearchRow
()
{
if
(
searchRow
==
null
)
{
if
(
current
!=
null
)
{
searchRow
=
getRow
(
current
);
}
}
return
searchRow
;
}
@Override
public
boolean
next
()
{
current
=
it
.
next
();
searchRow
=
null
;
row
=
null
;
return
current
!=
null
;
}
@Override
public
boolean
previous
()
{
throw
DbException
.
getUnsupportedException
(
"previous"
);
}
}
}
h2/src/main/org/h2/mvstore/db/MVTable.java
浏览文件 @
9e6867b0
...
...
@@ -26,7 +26,6 @@ import org.h2.index.Cursor;
import
org.h2.index.Index
;
import
org.h2.index.IndexType
;
import
org.h2.index.MultiVersionIndex
;
import
org.h2.index.SpatialTreeIndex
;
import
org.h2.message.DbException
;
import
org.h2.message.Trace
;
import
org.h2.mvstore.db.TransactionStore.Transaction
;
...
...
@@ -399,9 +398,9 @@ public class MVTable extends TableBase {
index
=
new
MVDelegateIndex
(
this
,
indexId
,
indexName
,
primaryIndex
,
indexType
);
}
else
if
(
indexType
.
isSpatial
())
{
in
t
todo
;
index
=
new
SpatialTreeIndex
(
this
,
indexId
,
indexName
,
cols
,
index
Type
,
true
,
create
,
session
);
in
dex
=
new
MVSpatialIndex
(
session
.
getDatabase
(),
this
,
indexId
,
index
Name
,
cols
,
indexType
);
}
else
{
index
=
new
MVSecondaryIndex
(
session
.
getDatabase
(),
this
,
indexId
,
...
...
h2/src/main/org/h2/mvstore/db/MVTableEngine.java
浏览文件 @
9e6867b0
...
...
@@ -173,10 +173,10 @@ public class MVTableEngine implements TableEngine {
if
(
s
==
null
||
s
.
isReadOnly
())
{
return
;
}
store
.
commit
();
store
.
compact
(
50
);
if
(!
store
.
compact
(
50
))
{
store
.
store
();
}
}
/**
* Close the store, without persisting changes.
...
...
h2/src/main/org/h2/mvstore/db/TransactionStore.java
浏览文件 @
9e6867b0
...
...
@@ -170,7 +170,7 @@ public class TransactionStore {
public
synchronized
void
close
()
{
// to avoid losing transaction ids
settings
.
put
(
LAST_TRANSACTION_ID
,
""
+
lastTransactionId
);
store
.
commit
();
store
.
store
();
}
/**
...
...
@@ -658,9 +658,8 @@ public class TransactionStore {
return
new
TransactionMap
<
K
,
V
>(
this
,
map
,
mapId
);
}
public
<
K
,
V
>
TransactionMap
<
K
,
V
>
openMap
(
String
name
,
MVMap
.
Builder
<
K
,
VersionedValue
>
builder
)
{
public
<
K
,
V
>
TransactionMap
<
K
,
V
>
openMap
(
MVMap
<
K
,
VersionedValue
>
map
)
{
checkNotClosed
();
MVMap
<
K
,
VersionedValue
>
map
=
store
.
store
.
openMap
(
name
,
builder
);
int
mapId
=
map
.
getId
();
return
new
TransactionMap
<
K
,
V
>(
this
,
map
,
mapId
);
}
...
...
@@ -1214,11 +1213,11 @@ public class TransactionStore {
/**
* Iterate over keys.
*
* @param
cursor the wrapped cursor
* @param
iterator the iterator to wrap
* @param includeUncommitted whether uncommitted entries should be included
* @return the iterator
*/
p
rivate
Iterator
<
K
>
wrapIterator
(
final
Cursor
<
K
>
curs
or
,
final
boolean
includeUncommitted
)
{
p
ublic
Iterator
<
K
>
wrapIterator
(
final
Iterator
<
K
>
iterat
or
,
final
boolean
includeUncommitted
)
{
return
new
Iterator
<
K
>()
{
private
K
current
;
...
...
@@ -1227,8 +1226,8 @@ public class TransactionStore {
}
private
void
fetchNext
()
{
while
(
curs
or
.
hasNext
())
{
current
=
curs
or
.
next
();
while
(
iterat
or
.
hasNext
())
{
current
=
iterat
or
.
next
();
if
(
includeUncommitted
)
{
return
;
}
...
...
h2/src/main/org/h2/mvstore/db/ValueDataType.java
浏览文件 @
9e6867b0
...
...
@@ -17,6 +17,8 @@ import org.h2.constant.ErrorCode;
import
org.h2.message.DbException
;
import
org.h2.mvstore.DataUtils
;
import
org.h2.mvstore.WriteBuffer
;
import
org.h2.mvstore.rtree.SpatialDataType
;
import
org.h2.mvstore.rtree.SpatialKey
;
import
org.h2.mvstore.type.DataType
;
import
org.h2.result.SortOrder
;
import
org.h2.store.DataHandler
;
...
...
@@ -68,10 +70,12 @@ public class ValueDataType implements DataType {
private
static
final
int
LONG_NEG
=
67
;
private
static
final
int
STRING_0_31
=
68
;
private
static
final
int
BYTES_0_31
=
100
;
private
static
final
int
SPATIAL_KEY_2D
=
132
;
final
DataHandler
handler
;
final
CompareMode
compareMode
;
final
int
[]
sortTypes
;
final
SpatialDataType
spatialType
=
new
SpatialDataType
(
2
);
public
ValueDataType
(
CompareMode
compareMode
,
DataHandler
handler
,
int
[]
sortTypes
)
{
this
.
compareMode
=
compareMode
;
...
...
@@ -134,6 +138,9 @@ public class ValueDataType implements DataType {
@Override
public
int
getMemory
(
Object
obj
)
{
if
(
obj
instanceof
SpatialKey
)
{
return
spatialType
.
getMemory
(
obj
);
}
return
getMemory
((
Value
)
obj
);
}
...
...
@@ -142,12 +149,17 @@ public class ValueDataType implements DataType {
}
@Override
public
Value
read
(
ByteBuffer
buff
)
{
public
Object
read
(
ByteBuffer
buff
)
{
return
readValue
(
buff
);
}
@Override
public
void
write
(
WriteBuffer
buff
,
Object
obj
)
{
if
(
obj
instanceof
SpatialKey
)
{
buff
.
put
((
byte
)
SPATIAL_KEY_2D
);
spatialType
.
write
(
buff
,
obj
);
return
;
}
Value
x
=
(
Value
)
obj
;
writeValue
(
buff
,
x
);
}
...
...
@@ -418,7 +430,7 @@ public class ValueDataType implements DataType {
*
* @return the value
*/
private
Value
readValue
(
ByteBuffer
buff
)
{
private
Object
readValue
(
ByteBuffer
buff
)
{
int
type
=
buff
.
get
()
&
255
;
switch
(
type
)
{
case
Value
.
NULL
:
...
...
@@ -440,9 +452,9 @@ public class ValueDataType implements DataType {
case
Value
.
SHORT
:
return
ValueShort
.
get
(
buff
.
getShort
());
case
DECIMAL_0_1:
return
(
ValueDecimal
)
ValueDecimal
.
ZERO
;
return
ValueDecimal
.
ZERO
;
case
DECIMAL_0_1
+
1
:
return
(
ValueDecimal
)
ValueDecimal
.
ONE
;
return
ValueDecimal
.
ONE
;
case
DECIMAL_SMALL_0:
return
ValueDecimal
.
get
(
BigDecimal
.
valueOf
(
readVarLong
(
buff
)));
case
DECIMAL_SMALL:
{
...
...
@@ -537,7 +549,7 @@ public class ValueDataType implements DataType {
int
len
=
readVarInt
(
buff
);
Value
[]
list
=
new
Value
[
len
];
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
list
[
i
]
=
readValue
(
buff
);
list
[
i
]
=
(
Value
)
readValue
(
buff
);
}
return
ValueArray
.
get
(
list
);
}
...
...
@@ -553,7 +565,7 @@ public class ValueDataType implements DataType {
}
Object
[]
o
=
new
Object
[
columns
];
for
(
int
i
=
0
;
i
<
columns
;
i
++)
{
o
[
i
]
=
readValue
(
buff
).
getObject
();
o
[
i
]
=
((
Value
)
readValue
(
buff
)
).
getObject
();
}
rs
.
addRow
(
o
);
}
...
...
@@ -565,6 +577,8 @@ public class ValueDataType implements DataType {
buff
.
get
(
b
,
0
,
len
);
return
ValueGeometry
.
get
(
b
);
}
case
SPATIAL_KEY_2D:
return
spatialType
.
read
(
buff
);
default
:
if
(
type
>=
INT_0_15
&&
type
<
INT_0_15
+
16
)
{
return
ValueInt
.
get
(
type
-
INT_0_15
);
...
...
h2/src/main/org/h2/mvstore/rtree/MVRTreeMap.java
浏览文件 @
9e6867b0
...
...
@@ -478,7 +478,7 @@ public class MVRTreeMap<V> extends MVMap<SpatialKey, V> {
/**
* A cursor to iterate over a subset of the keys.
*/
static
class
RTreeCursor
implements
Iterator
<
SpatialKey
>
{
public
static
class
RTreeCursor
implements
Iterator
<
SpatialKey
>
{
private
final
SpatialKey
filter
;
private
CursorPos
pos
;
...
...
h2/src/main/org/h2/mvstore/rtree/SpatialKey.java
浏览文件 @
9e6867b0
...
...
@@ -91,10 +91,25 @@ public class SpatialKey {
@Override
public
boolean
equals
(
Object
other
)
{
if
(!(
other
instanceof
SpatialKey
))
{
if
(
other
==
this
)
{
return
true
;
}
else
if
(!(
other
instanceof
SpatialKey
))
{
return
false
;
}
SpatialKey
o
=
(
SpatialKey
)
other
;
if
(
id
!=
o
.
id
)
{
return
false
;
}
return
equalsIgnoringId
(
o
);
}
/**
* Check whether two objects are equals, but do not compare the id fields.
*
* @param o the other key
* @return true if the contents are the same
*/
public
boolean
equalsIgnoringId
(
SpatialKey
o
)
{
return
Arrays
.
equals
(
minMax
,
o
.
minMax
);
}
...
...
h2/src/test/org/h2/test/db/TestSpatial.java
浏览文件 @
9e6867b0
...
...
@@ -45,7 +45,7 @@ public class TestSpatial extends TestBase {
@Override
public
void
test
()
throws
SQLException
{
if
(
config
.
mvcc
)
{
if
(
!
config
.
mvStore
&&
config
.
mvcc
)
{
return
;
}
if
(
DataType
.
GEOMETRY_CLASS
!=
null
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论