Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
f0a4ea5c
提交
f0a4ea5c
authored
11月 22, 2013
作者:
noelgrandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Issue 527: Oracle compatibility mode: incorrect scale behavior, patch by Daniel Gredler.
上级
90dfd857
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
21 行增加
和
3 行删除
+21
-3
changelog.html
h2/src/docsrc/html/changelog.html
+1
-0
Mode.java
h2/src/main/org/h2/engine/Mode.java
+1
-0
TestCompatibilityOracle.java
h2/src/test/org/h2/test/db/TestCompatibilityOracle.java
+18
-2
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
f0a4ea5c
...
...
@@ -40,6 +40,7 @@ Change Log
</li><li>
Added support for ON DUPLICATE KEY UPDATE like MySQL with the values() function to update with the value that
was to be inserted. Patch from Jean-Francois Noel.
</li><li>
Issue 522: Treat empty strings like NULL in Oracle compatibility mode, patch by Daniel Gredler.
</li><li>
Issue 527: Oracle compatibility mode: incorrect scale behavior, patch by Daniel Gredler.
</li></ul>
<h2>
Version 1.3.174 (2013-10-19)
</h2>
...
...
h2/src/main/org/h2/engine/Mode.java
浏览文件 @
f0a4ea5c
...
...
@@ -185,6 +185,7 @@ public class Mode {
mode
=
new
Mode
(
"Oracle"
);
mode
.
aliasColumnName
=
true
;
mode
.
convertOnlyToSmallerScale
=
true
;
mode
.
uniqueIndexSingleNullExceptAllColumnsAreNull
=
true
;
mode
.
treatEmptyStringsAsNull
=
true
;
add
(
mode
);
...
...
h2/src/test/org/h2/test/db/TestCompatibilityOracle.java
浏览文件 @
f0a4ea5c
...
...
@@ -33,6 +33,7 @@ public class TestCompatibilityOracle extends TestBase {
@Override
public
void
test
()
throws
Exception
{
testTreatEmptyStringsAsNull
();
testDecimalScale
();
}
private
void
testTreatEmptyStringsAsNull
()
throws
SQLException
{
...
...
@@ -87,6 +88,21 @@ public class TestCompatibilityOracle extends TestBase {
conn
.
close
();
}
private
void
testDecimalScale
()
throws
SQLException
{
deleteDb
(
"oracle"
);
Connection
conn
=
getConnection
(
"oracle;MODE=Oracle"
);
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"CREATE TABLE A (ID NUMBER, X DECIMAL(9,5))"
);
stat
.
execute
(
"INSERT INTO A VALUES (1, 2)"
);
stat
.
execute
(
"INSERT INTO A VALUES (2, 4.3)"
);
stat
.
execute
(
"INSERT INTO A VALUES (3, '6.78')"
);
assertResult
(
"3"
,
stat
,
"SELECT COUNT(*) FROM A"
);
assertResult
(
new
Object
[][]
{
{
1
,
2
},
{
2
,
4.3
},
{
3
,
6.78
}
},
stat
,
"SELECT * FROM A"
);
conn
.
close
();
}
private
void
assertResult
(
Object
[][]
expectedRowsOfValues
,
Statement
stat
,
String
sql
)
throws
SQLException
{
assertResult
(
newSimpleResultSet
(
expectedRowsOfValues
),
stat
,
sql
);
}
...
...
@@ -117,10 +133,10 @@ public class TestCompatibilityOracle extends TestBase {
return
null
;
}
if
(
object
instanceof
Object
[])
{
return
Arrays
.
deepToString
((
(
Object
[])
object
)
);
return
Arrays
.
deepToString
((
Object
[])
object
);
}
if
(
object
instanceof
byte
[])
{
return
Arrays
.
toString
((
(
byte
[])
object
)
);
return
Arrays
.
toString
((
byte
[])
object
);
}
return
object
.
toString
();
}
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
f0a4ea5c
...
...
@@ -743,4 +743,4 @@ lives pauses allocates kicks introduction straightforward getenv
ordinate tweaking fetching rfe yates cookie btrfs cookies
nocycle nomaxvalue nominvalue cycling proceed prospective exhausted contingent
validities hang degenerates freezes emulation gredler cemo koc blanked
reverting gredler blanked koc cemo jump
\ No newline at end of file
reverting blanked jump
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论