Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
56e947ef
提交
56e947ef
authored
9月 29, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Linked tables now support default values.
上级
218b14f3
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
145 行增加
和
36 行删除
+145
-36
Update.java
h2/src/main/org/h2/command/dml/Update.java
+1
-9
LinkedIndex.java
h2/src/main/org/h2/index/LinkedIndex.java
+16
-5
RowList.java
h2/src/main/org/h2/result/RowList.java
+32
-22
Table.java
h2/src/main/org/h2/table/Table.java
+20
-0
TableLink.java
h2/src/main/org/h2/table/TableLink.java
+34
-0
TestLinkedTable.java
h2/src/test/org/h2/test/db/TestLinkedTable.java
+42
-0
没有找到文件。
h2/src/main/org/h2/command/dml/Update.java
浏览文件 @
56e947ef
...
...
@@ -96,15 +96,7 @@ public class Update extends Prepared {
newValue
=
oldRow
.
getValue
(
i
);
}
else
if
(
newExpr
==
ValueExpression
.
getDefault
())
{
Column
column
=
table
.
getColumn
(
i
);
Expression
defaultExpr
=
column
.
getDefaultExpression
();
Value
v
;
if
(
defaultExpr
==
null
)
{
v
=
column
.
validateConvertUpdateSequence
(
session
,
null
);
}
else
{
v
=
defaultExpr
.
getValue
(
session
);
}
int
type
=
column
.
getType
();
newValue
=
v
.
convertTo
(
type
);
newValue
=
table
.
getDefaultValue
(
session
,
column
);
}
else
{
Column
column
=
table
.
getColumn
(
i
);
newValue
=
newExpr
.
getValue
(
session
).
convertTo
(
column
.
getType
());
...
...
h2/src/main/org/h2/index/LinkedIndex.java
浏览文件 @
56e947ef
...
...
@@ -55,8 +55,10 @@ public class LinkedIndex extends BaseIndex {
buff
.
append
(
targetTableName
).
append
(
" VALUES("
);
for
(
int
i
=
0
;
i
<
row
.
getColumnCount
();
i
++)
{
Value
v
=
row
.
getValue
(
i
);
buff
.
appendExceptFirst
(
","
);
if
(
isNull
(
v
))
{
buff
.
appendExceptFirst
(
", "
);
if
(
v
==
null
)
{
buff
.
append
(
"DEFAULT"
);
}
else
if
(
isNull
(
v
))
{
buff
.
append
(
"NULL"
);
}
else
{
buff
.
append
(
'?'
);
...
...
@@ -221,7 +223,13 @@ public class LinkedIndex extends BaseIndex {
buff
.
append
(
targetTableName
).
append
(
" SET "
);
for
(
int
i
=
0
;
i
<
newRow
.
getColumnCount
();
i
++)
{
buff
.
appendExceptFirst
(
", "
);
buff
.
append
(
table
.
getColumn
(
i
).
getSQL
()).
append
(
"=?"
);
buff
.
append
(
table
.
getColumn
(
i
).
getSQL
()).
append
(
'='
);
Value
v
=
newRow
.
getValue
(
i
);
if
(
v
==
null
)
{
buff
.
append
(
"DEFAULT"
);
}
else
{
buff
.
append
(
'?'
);
}
}
buff
.
append
(
" WHERE "
);
buff
.
resetCount
();
...
...
@@ -243,8 +251,11 @@ public class LinkedIndex extends BaseIndex {
int
j
=
1
;
PreparedStatement
prep
=
link
.
getPreparedStatement
(
sql
,
false
);
for
(
int
i
=
0
;
i
<
newRow
.
getColumnCount
();
i
++)
{
newRow
.
getValue
(
i
).
set
(
prep
,
j
);
j
++;
Value
v
=
newRow
.
getValue
(
i
);
if
(
v
!=
null
)
{
v
.
set
(
prep
,
j
);
j
++;
}
}
for
(
int
i
=
0
;
i
<
oldRow
.
getColumnCount
();
i
++)
{
Value
v
=
oldRow
.
getValue
(
i
);
...
...
h2/src/main/org/h2/result/RowList.java
浏览文件 @
56e947ef
...
...
@@ -62,24 +62,29 @@ public class RowList {
buff
.
writeInt
(
r
.
getStorageId
());
for
(
int
i
=
0
;
i
<
r
.
getColumnCount
();
i
++)
{
Value
v
=
r
.
getValue
(
i
);
if
(
v
.
getType
()
==
Value
.
CLOB
||
v
.
getType
()
==
Value
.
BLOB
)
{
// need to keep a reference to temporary lobs,
// otherwise the temp file is deleted
ValueLob
lob
=
(
ValueLob
)
v
;
if
(
lob
.
getSmall
()
==
null
&&
lob
.
getTableId
()
==
0
)
{
if
(
lobs
==
null
)
{
lobs
=
ObjectArray
.
newInstance
();
if
(
v
==
null
)
{
buff
.
writeByte
((
byte
)
0
);
}
else
{
buff
.
writeByte
((
byte
)
1
);
if
(
v
.
getType
()
==
Value
.
CLOB
||
v
.
getType
()
==
Value
.
BLOB
)
{
// need to keep a reference to temporary lobs,
// otherwise the temp file is deleted
ValueLob
lob
=
(
ValueLob
)
v
;
if
(
lob
.
getSmall
()
==
null
&&
lob
.
getTableId
()
==
0
)
{
if
(
lobs
==
null
)
{
lobs
=
ObjectArray
.
newInstance
();
}
// need to create a copy, otherwise,
// if stored multiple times, it may be renamed
// and then not found
lob
=
lob
.
copyToTemp
();
lobs
.
add
(
lob
);
v
=
lob
;
}
// need to create a copy, otherwise,
// if stored multiple times, it may be renamed
// and then not found
lob
=
lob
.
copyToTemp
();
lobs
.
add
(
lob
);
v
=
lob
;
}
buff
.
checkCapacity
(
buff
.
getValueLen
(
v
));
buff
.
writeValue
(
v
);
}
buff
.
checkCapacity
(
buff
.
getValueLen
(
v
));
buff
.
writeValue
(
v
);
}
}
...
...
@@ -180,13 +185,18 @@ public class RowList {
int
storageId
=
buff
.
readInt
();
Value
[]
values
=
new
Value
[
columnCount
];
for
(
int
i
=
0
;
i
<
columnCount
;
i
++)
{
Value
v
=
buff
.
readValue
();
if
(
v
.
isLinked
())
{
ValueLob
lob
=
(
ValueLob
)
v
;
// the table id is 0 if it was linked when writing
// a temporary entry
if
(
lob
.
getTableId
()
==
0
)
{
session
.
unlinkAtCommit
(
lob
);
Value
v
;
if
(
buff
.
readByte
()
==
0
)
{
v
=
null
;
}
else
{
v
=
buff
.
readValue
();
if
(
v
.
isLinked
())
{
ValueLob
lob
=
(
ValueLob
)
v
;
// the table id is 0 if it was linked when writing
// a temporary entry
if
(
lob
.
getTableId
()
==
0
)
{
session
.
unlinkAtCommit
(
lob
);
}
}
}
values
[
i
]
=
v
;
...
...
h2/src/main/org/h2/table/Table.java
浏览文件 @
56e947ef
...
...
@@ -18,6 +18,7 @@ import org.h2.engine.Constants;
import
org.h2.engine.DbObject
;
import
org.h2.engine.Right
;
import
org.h2.engine.Session
;
import
org.h2.expression.Expression
;
import
org.h2.expression.ExpressionVisitor
;
import
org.h2.index.Index
;
import
org.h2.index.IndexType
;
...
...
@@ -936,4 +937,23 @@ public abstract class Table extends SchemaObjectBase {
return
compareMode
;
}
/**
* Get or generate a default value for the given column.
*
* @param session the session
* @param column the column
* @return the value
*/
public
Value
getDefaultValue
(
Session
session
,
Column
column
)
throws
SQLException
{
Expression
defaultExpr
=
column
.
getDefaultExpression
();
Value
v
;
if
(
defaultExpr
==
null
)
{
v
=
column
.
validateConvertUpdateSequence
(
session
,
null
);
}
else
{
v
=
defaultExpr
.
getValue
(
session
);
}
int
type
=
column
.
getType
();
return
v
.
convertTo
(
type
);
}
}
h2/src/main/org/h2/table/TableLink.java
浏览文件 @
56e947ef
...
...
@@ -33,6 +33,7 @@ import org.h2.util.New;
import
org.h2.util.ObjectArray
;
import
org.h2.util.StringUtils
;
import
org.h2.value.DataType
;
import
org.h2.value.Value
;
import
org.h2.value.ValueDate
;
import
org.h2.value.ValueTime
;
import
org.h2.value.ValueTimestamp
;
...
...
@@ -542,4 +543,37 @@ public class TableLink extends Table {
return
false
;
}
/**
* Convert the values if required. Default values are not set (kept as
* null).
*
* @param session the session
* @param row the row
*/
public
void
validateConvertUpdateSequence
(
Session
session
,
Row
row
)
throws
SQLException
{
for
(
int
i
=
0
;
i
<
columns
.
length
;
i
++)
{
Value
value
=
row
.
getValue
(
i
);
if
(
value
!=
null
)
{
// null means use the default value
Column
column
=
columns
[
i
];
Value
v2
=
column
.
validateConvertUpdateSequence
(
session
,
value
);
if
(
v2
!=
value
)
{
row
.
setValue
(
i
,
v2
);
}
}
}
}
/**
* Get or generate a default value for the given column. Default values are
* not set (kept as null).
*
* @param session the session
* @param column the column
* @return the value
*/
public
Value
getDefaultValue
(
Session
session
,
Column
column
)
{
return
null
;
}
}
h2/src/test/org/h2/test/db/TestLinkedTable.java
浏览文件 @
56e947ef
...
...
@@ -33,6 +33,7 @@ public class TestLinkedTable extends TestBase {
}
public
void
test
()
throws
SQLException
{
testDefaultValues
();
testHiddenSQL
();
// testLinkAutoAdd();
testNestedQueriesToSameTable
();
...
...
@@ -50,6 +51,47 @@ public class TestLinkedTable extends TestBase {
deleteDb
(
"linkedTable"
);
}
private
void
testDefaultValues
()
throws
SQLException
{
if
(
config
.
memory
)
{
return
;
}
deleteDb
(
"linkedTable"
);
Connection
connMain
=
DriverManager
.
getConnection
(
"jdbc:h2:mem:linkedTable"
);
Statement
statMain
=
connMain
.
createStatement
();
statMain
.
execute
(
"create table test(id identity, name varchar default 'test')"
);
Connection
conn
=
getConnection
(
"linkedTable"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"create linked table test1('', 'jdbc:h2:mem:linkedTable', '', '', 'TEST') emit updates"
);
stat
.
execute
(
"create linked table test2('', 'jdbc:h2:mem:linkedTable', '', '', 'TEST')"
);
stat
.
execute
(
"insert into test1 values(default, default)"
);
stat
.
execute
(
"insert into test2 values(default, default)"
);
stat
.
execute
(
"merge into test2 values(3, default)"
);
stat
.
execute
(
"update test1 set name=default where id=1"
);
stat
.
execute
(
"update test2 set name=default where id=2"
);
ResultSet
rs
=
statMain
.
executeQuery
(
"select * from test order by id"
);
rs
.
next
();
assertEquals
(
1
,
rs
.
getInt
(
1
));
assertEquals
(
"test"
,
rs
.
getString
(
2
));
rs
.
next
();
assertEquals
(
2
,
rs
.
getInt
(
1
));
assertEquals
(
"test"
,
rs
.
getString
(
2
));
rs
.
next
();
assertEquals
(
3
,
rs
.
getInt
(
1
));
assertEquals
(
"test"
,
rs
.
getString
(
2
));
assertFalse
(
rs
.
next
());
stat
.
execute
(
"delete from test1 where id=1"
);
stat
.
execute
(
"delete from test2 where id=2"
);
stat
.
execute
(
"delete from test2 where id=3"
);
conn
.
close
();
rs
=
statMain
.
executeQuery
(
"select * from test order by id"
);
assertFalse
(
rs
.
next
());
connMain
.
close
();
}
private
void
testHiddenSQL
()
throws
SQLException
{
if
(
config
.
memory
||
!
SysProperties
.
SHARE_LINKED_CONNECTIONS
)
{
return
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论