Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
be13b43d
Unverified
提交
be13b43d
authored
6 年前
作者:
Evgenij Ryazanov
提交者:
GitHub
6 年前
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1158 from turbanoff/make_fields_final
make fields final
上级
be3c0288
175f1148
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
6 行增加
和
6 行删除
+6
-6
ExpressionColumn.java
h2/src/main/org/h2/expression/ExpressionColumn.java
+1
-1
SpatialTreeIndex.java
h2/src/main/org/h2/index/SpatialTreeIndex.java
+1
-1
MVMap.java
h2/src/main/org/h2/mvstore/MVMap.java
+2
-2
JoinBatch.java
h2/src/main/org/h2/table/JoinBatch.java
+2
-2
没有找到文件。
h2/src/main/org/h2/expression/ExpressionColumn.java
浏览文件 @
be13b43d
...
...
@@ -32,7 +32,7 @@ public class ExpressionColumn extends Expression {
private
final
Database
database
;
private
final
String
schemaName
;
private
final
String
tableAlias
;
private
String
columnName
;
private
final
String
columnName
;
private
ColumnResolver
columnResolver
;
private
int
queryLevel
;
private
Column
column
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/index/SpatialTreeIndex.java
浏览文件 @
be13b43d
...
...
@@ -269,7 +269,7 @@ public class SpatialTreeIndex extends BaseIndex implements SpatialIndex {
private
final
Iterator
<
SpatialKey
>
it
;
private
SpatialKey
current
;
private
final
Table
table
;
private
Session
session
;
private
final
Session
session
;
public
SpatialCursor
(
Iterator
<
SpatialKey
>
it
,
Table
table
,
Session
session
)
{
this
.
it
=
it
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/mvstore/MVMap.java
浏览文件 @
be13b43d
...
...
@@ -41,8 +41,8 @@ public class MVMap<K, V> extends AbstractMap<K, V>
*/
private
final
AtomicReference
<
RootReference
>
root
;
private
int
id
;
private
long
createVersion
;
private
final
int
id
;
private
final
long
createVersion
;
private
final
DataType
keyType
;
private
final
DataType
valueType
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/table/JoinBatch.java
浏览文件 @
be13b43d
...
...
@@ -1074,8 +1074,8 @@ public final class JoinBatch {
* Query runner for UNION.
*/
private
static
class
QueryRunnerUnion
extends
QueryRunnerBase
{
Future
<
Cursor
>[]
topFutureCursors
;
private
ViewIndexLookupBatchUnion
batchUnion
;
final
Future
<
Cursor
>[]
topFutureCursors
;
private
final
ViewIndexLookupBatchUnion
batchUnion
;
@SuppressWarnings
(
"unchecked"
)
QueryRunnerUnion
(
ViewIndexLookupBatchUnion
batchUnion
)
{
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论