Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
137a50dc
提交
137a50dc
authored
6月 17, 2015
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Improve error message when specifying incorrect scale/precision
上级
a09fa0fc
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
15 行增加
和
5 行删除
+15
-5
_messages_en.prop
h2/src/docsrc/textbase/_messages_en.prop
+1
-0
ErrorCode.java
h2/src/main/org/h2/api/ErrorCode.java
+11
-1
Parser.java
h2/src/main/org/h2/command/Parser.java
+3
-4
没有找到文件。
h2/src/docsrc/textbase/_messages_en.prop
浏览文件 @
137a50dc
...
@@ -78,6 +78,7 @@
...
@@ -78,6 +78,7 @@
90048=Unsupported database file version or invalid file header in file {0}
90048=Unsupported database file version or invalid file header in file {0}
90049=Encryption error in file {0}
90049=Encryption error in file {0}
90050=Wrong password format, must be: file password <space> user password
90050=Wrong password format, must be: file password <space> user password
90051=Scale(${0}) must be <= precision({1})
90052=Subquery is not a single column query
90052=Subquery is not a single column query
90053=Scalar subquery contains more than one row
90053=Scalar subquery contains more than one row
90054=Invalid use of aggregate function {0}
90054=Invalid use of aggregate function {0}
...
...
h2/src/main/org/h2/api/ErrorCode.java
浏览文件 @
137a50dc
...
@@ -491,6 +491,16 @@ public class ErrorCode {
...
@@ -491,6 +491,16 @@ public class ErrorCode {
*/
*/
public
static
final
int
INVALID_VALUE_2
=
90008
;
public
static
final
int
INVALID_VALUE_2
=
90008
;
/**
* The error with code <code>90051</code> is thrown when
* trying to use a scale that is > precision.
* Example:
* <pre>
* CREATE TABLE TABLE1 ( FAIL NUMBER(6,24) );
* </pre>
*/
public
static
final
int
INVALID_VALUE_SCALE_PRECISION
=
90051
;
/**
/**
* The error with code <code>90009</code> is thrown when
* The error with code <code>90009</code> is thrown when
* trying to create a sequence with an invalid combination
* trying to create a sequence with an invalid combination
...
@@ -1914,7 +1924,7 @@ public class ErrorCode {
...
@@ -1914,7 +1924,7 @@ public class ErrorCode {
public
static
final
int
STEP_SIZE_MUST_NOT_BE_ZERO
=
90142
;
public
static
final
int
STEP_SIZE_MUST_NOT_BE_ZERO
=
90142
;
// next are 9005
1, 9005
6, 90110, 90122, 90143
// next are 90056, 90110, 90122, 90143
private
ErrorCode
()
{
private
ErrorCode
()
{
// utility class
// utility class
...
...
h2/src/main/org/h2/command/Parser.java
浏览文件 @
137a50dc
...
@@ -129,8 +129,8 @@ import org.h2.table.IndexColumn;
...
@@ -129,8 +129,8 @@ import org.h2.table.IndexColumn;
import
org.h2.table.RangeTable
;
import
org.h2.table.RangeTable
;
import
org.h2.table.Table
;
import
org.h2.table.Table
;
import
org.h2.table.TableFilter
;
import
org.h2.table.TableFilter
;
import
org.h2.table.TableView
;
import
org.h2.table.TableFilter.TableFilterVisitor
;
import
org.h2.table.TableFilter.TableFilterVisitor
;
import
org.h2.table.TableView
;
import
org.h2.util.MathUtils
;
import
org.h2.util.MathUtils
;
import
org.h2.util.New
;
import
org.h2.util.New
;
import
org.h2.util.StatementBuilder
;
import
org.h2.util.StatementBuilder
;
...
@@ -4068,9 +4068,8 @@ public class Parser {
...
@@ -4068,9 +4068,8 @@ public class Parser {
readIf
(
"UNSIGNED"
);
readIf
(
"UNSIGNED"
);
int
type
=
dataType
.
type
;
int
type
=
dataType
.
type
;
if
(
scale
>
precision
)
{
if
(
scale
>
precision
)
{
throw
DbException
.
get
(
ErrorCode
.
INVALID_VALUE_2
,
throw
DbException
.
get
(
ErrorCode
.
INVALID_VALUE_SCALE_PRECISION
,
Integer
.
toString
(
scale
),
"scale (precision = "
+
precision
+
Integer
.
toString
(
scale
),
Long
.
toString
(
precision
));
")"
);
}
}
Column
column
=
new
Column
(
columnName
,
type
,
precision
,
scale
,
Column
column
=
new
Column
(
columnName
,
type
,
precision
,
scale
,
displaySize
);
displaySize
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论