Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
bf06f2b4
Unverified
提交
bf06f2b4
authored
4月 27, 2018
作者:
Evgenij Ryazanov
提交者:
GitHub
4月 27, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1096 from katzyn/parser
Parse and format TOP, INTERSECTS, and DUAL properly
上级
fb5b206f
7ec4245d
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
117 行增加
和
52 行删除
+117
-52
advanced.html
h2/src/docsrc/html/advanced.html
+3
-3
changelog.html
h2/src/docsrc/html/changelog.html
+4
-0
Parser.java
h2/src/main/org/h2/command/Parser.java
+46
-35
JdbcStatement.java
h2/src/main/org/h2/jdbc/JdbcStatement.java
+1
-1
ParserUtil.java
h2/src/main/org/h2/util/ParserUtil.java
+16
-13
TestScript.java
h2/src/test/org/h2/test/scripts/TestScript.java
+1
-0
dual.sql
h2/src/test/org/h2/test/scripts/dual.sql
+46
-0
没有找到文件。
h2/src/docsrc/html/advanced.html
浏览文件 @
bf06f2b4
...
...
@@ -503,9 +503,9 @@ unless they are quoted (surrounded with double quotes). The list is currently:
</p><p>
<code>
ALL, CHECK, CONSTRAINT, CROSS, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, DISTINCT, EXCEPT,
EXISTS, FALSE, FETCH, FOR, FOREIGN, FROM, FULL, GROUP, HAVING, INNER, INTERSECT, I
S, JOIN
,
LIKE, LIMIT, MINUS, NATURAL, NOT, NULL, OFFSET, ON, ORDER, PRIMARY, ROWNUM, SELECT, SYSDATE
,
SYS
TIME, SYSTIMESTAMP, TODAY
, TRUE, UNION, UNIQUE, WHERE, WITH
EXISTS, FALSE, FETCH, FOR, FOREIGN, FROM, FULL, GROUP, HAVING, INNER, INTERSECT, I
NTERSECTS
,
IS, JOIN, LIKE, LIMIT, MINUS, NATURAL, NOT, NULL, OFFSET, ON, ORDER, PRIMARY, ROWNUM, SELECT
,
SYS
DATE, SYSTIME, SYSTIMESTAMP, TODAY, TOP
, TRUE, UNION, UNIQUE, WHERE, WITH
</code>
</p><p>
Certain words of this list are keywords because they are functions that can be used without '()' for compatibility,
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
bf06f2b4
...
...
@@ -21,8 +21,12 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul>
<li>
Issue #1089: Parser does not quote words INTERSECTS, DUAL, TOP
</li>
<li>
Issue #230: Renaming a column does not update foreign key constraint
</li>
<li>
PR #1087: improve performance of planning large queries
</li>
<li>
Issue #394: Recover tool places COLLATION and BINARY_COLLATION after temporary tables
</li>
<li>
Improve the script-based unit testing to check the error code of the exception thrown.
...
...
h2/src/main/org/h2/command/Parser.java
浏览文件 @
bf06f2b4
...
...
@@ -684,10 +684,6 @@ public class Parser {
if
(
equalsToken
(
"SESSION"
,
schemaName
))
{
// for local temporary tables
schema
=
database
.
getSchema
(
session
.
getCurrentSchemaName
());
}
else
if
(
database
.
getMode
().
sysDummy1
&&
"SYSIBM"
.
equals
(
schemaName
))
{
// IBM DB2 and Apache Derby compatibility: SYSIBM.SYSDUMMY1
schema
=
database
.
getSchema
(
session
.
getCurrentSchemaName
());
}
}
return
schema
;
...
...
@@ -1372,7 +1368,7 @@ public class Parser {
private
TableFilter
readTableFilter
()
{
Table
table
;
String
alias
=
null
;
if
(
readIf
(
"("
))
{
label:
if
(
readIf
(
"("
))
{
if
(
isSelect
())
{
Query
query
=
parseSelectUnion
();
read
(
")"
);
...
...
@@ -1406,7 +1402,19 @@ public class Parser {
table
=
parseValuesTable
(
0
).
getTable
();
}
else
{
String
tableName
=
readIdentifierWithSchema
(
null
);
Schema
schema
=
getSchema
();
Schema
schema
;
if
(
schemaName
==
null
)
{
schema
=
null
;
}
else
{
schema
=
findSchema
(
schemaName
);
if
(
schema
==
null
)
{
if
(
isDualTable
(
tableName
))
{
table
=
getDualTable
(
false
);
break
label
;
}
throw
DbException
.
get
(
ErrorCode
.
SCHEMA_NOT_FOUND_1
,
schemaName
);
}
}
boolean
foundLeftBracket
=
readIf
(
"("
);
if
(
foundLeftBracket
&&
readIf
(
"INDEX"
))
{
// Sybase compatibility with
...
...
@@ -1442,13 +1450,8 @@ public class Parser {
}
table
=
new
FunctionTable
(
mainSchema
,
session
,
expr
,
call
);
}
}
else
if
(
equalsToken
(
"DUAL"
,
tableName
))
{
table
=
getDualTable
(
false
);
}
else
if
(
database
.
getMode
().
sysDummy1
&&
equalsToken
(
"SYSDUMMY1"
,
tableName
))
{
table
=
getDualTable
(
false
);
}
else
{
table
=
readTableOrView
(
tableName
);
table
=
readTableOrView
(
tableName
,
true
);
}
}
ArrayList
<
String
>
derivedColumnNames
=
null
;
...
...
@@ -4206,7 +4209,7 @@ public class Parser {
// if not yet converted to uppercase, do it now
s
=
StringUtils
.
toUpperEnglish
(
s
);
}
return
getSaveTokenType
(
s
,
false
);
return
ParserUtil
.
getSaveTokenType
(
s
,
false
);
}
private
boolean
isKeyword
(
String
s
)
{
...
...
@@ -4217,10 +4220,6 @@ public class Parser {
return
ParserUtil
.
isKeyword
(
s
);
}
private
static
int
getSaveTokenType
(
String
s
,
boolean
functionsAsKeywords
)
{
return
ParserUtil
.
getSaveTokenType
(
s
,
functionsAsKeywords
);
}
private
Column
parseColumnForTable
(
String
columnName
,
boolean
defaultNullable
)
{
Column
column
;
...
...
@@ -5937,15 +5936,23 @@ public class Parser {
return
command
;
}
boolean
isDualTable
(
String
tableName
)
{
return
((
schemaName
==
null
||
equalsToken
(
schemaName
,
"SYS"
))
&&
equalsToken
(
"DUAL"
,
tableName
))
||
(
database
.
getMode
().
sysDummy1
&&
(
schemaName
==
null
||
equalsToken
(
schemaName
,
"SYSIBM"
)))
&&
equalsToken
(
"SYSDUMMY1"
,
tableName
);
}
private
Table
readTableOrView
()
{
return
readTableOrView
(
readIdentifierWithSchema
(
null
));
return
readTableOrView
(
readIdentifierWithSchema
(
null
)
,
false
);
}
private
Table
readTableOrView
(
String
tableName
)
{
// same algorithm than readSequence
private
Table
readTableOrView
(
String
tableName
,
boolean
allowDual
)
{
if
(
schemaName
!=
null
)
{
return
getSchema
().
getTableOrView
(
session
,
tableName
);
Table
table
=
getSchema
().
resolveTableOrView
(
session
,
tableName
);
if
(
table
!=
null
)
{
return
table
;
}
}
else
{
Table
table
=
database
.
getSchema
(
session
.
getCurrentSchemaName
())
.
resolveTableOrView
(
session
,
tableName
);
if
(
table
!=
null
)
{
...
...
@@ -5961,6 +5968,10 @@ public class Parser {
}
}
}
}
if
(
allowDual
&&
isDualTable
(
tableName
))
{
return
getDualTable
(
false
);
}
throw
DbException
.
get
(
ErrorCode
.
TABLE_OR_VIEW_NOT_FOUND_1
,
tableName
);
}
...
...
@@ -6878,7 +6889,7 @@ public class Parser {
if
(
s
==
null
)
{
return
"\"\""
;
}
if
(
ParserUtil
.
isSimpleIdentifier
(
s
,
false
))
{
if
(
ParserUtil
.
isSimpleIdentifier
(
s
))
{
return
s
;
}
return
StringUtils
.
quoteIdentifier
(
s
);
...
...
h2/src/main/org/h2/jdbc/JdbcStatement.java
浏览文件 @
bf06f2b4
...
...
@@ -1405,7 +1405,7 @@ public class JdbcStatement extends TraceObject implements Statement, JdbcStateme
*/
@Override
public
boolean
isSimpleIdentifier
(
String
identifier
)
throws
SQLException
{
return
ParserUtil
.
isSimpleIdentifier
(
identifier
,
true
);
return
ParserUtil
.
isSimpleIdentifier
(
identifier
);
}
/**
...
...
h2/src/main/org/h2/util/ParserUtil.java
浏览文件 @
bf06f2b4
...
...
@@ -58,11 +58,10 @@ public class ParserUtil {
* Is this a simple identifier (in the JDBC specification sense).
*
* @param s identifier to check
* @param functionsAsKeywords treat system functions as keywords
* @return is specified identifier may be used without quotes
* @throws NullPointerException if s is {@code null}
*/
public
static
boolean
isSimpleIdentifier
(
String
s
,
boolean
functionsAsKeywords
)
{
public
static
boolean
isSimpleIdentifier
(
String
s
)
{
if
(
s
.
length
()
==
0
)
{
return
false
;
}
...
...
@@ -78,17 +77,18 @@ public class ParserUtil {
return
false
;
}
}
return
getSaveTokenType
(
s
,
functionsAsKeywords
)
==
IDENTIFIER
;
return
getSaveTokenType
(
s
,
true
)
==
IDENTIFIER
;
}
/**
* Get the token type.
*
* @param s the token
* @param functionsAsKeywords whether "current data / time" functions are keywords
* @param additionalKeywords whether TOP, INTERSECTS, and "current data /
* time" functions are keywords
* @return the token type
*/
public
static
int
getSaveTokenType
(
String
s
,
boolean
functionsAs
Keywords
)
{
public
static
int
getSaveTokenType
(
String
s
,
boolean
additional
Keywords
)
{
switch
(
s
.
charAt
(
0
))
{
case
'A'
:
return
getKeywordOrIdentifier
(
s
,
"ALL"
,
KEYWORD
);
...
...
@@ -100,7 +100,7 @@ public class ParserUtil {
}
else
if
(
"CROSS"
.
equals
(
s
))
{
return
KEYWORD
;
}
if
(
functionsAs
Keywords
)
{
if
(
additional
Keywords
)
{
if
(
"CURRENT_DATE"
.
equals
(
s
)
||
"CURRENT_TIME"
.
equals
(
s
)
||
"CURRENT_TIMESTAMP"
.
equals
(
s
))
{
return
KEYWORD
;
}
...
...
@@ -131,12 +131,15 @@ public class ParserUtil {
case
'H'
:
return
getKeywordOrIdentifier
(
s
,
"HAVING"
,
KEYWORD
);
case
'I'
:
if
(
"INNER"
.
equals
(
s
))
{
if
(
"INNER"
.
equals
(
s
)
||
"INTERSECT"
.
equals
(
s
)
||
"IS"
.
equals
(
s
)
)
{
return
KEYWORD
;
}
else
if
(
"INTERSECT"
.
equals
(
s
))
{
}
if
(
additionalKeywords
)
{
if
(
"INTERSECTS"
.
equals
(
s
))
{
return
KEYWORD
;
}
return
getKeywordOrIdentifier
(
s
,
"IS"
,
KEYWORD
);
}
return
IDENTIFIER
;
case
'J'
:
return
getKeywordOrIdentifier
(
s
,
"JOIN"
,
KEYWORD
);
case
'L'
:
...
...
@@ -168,7 +171,7 @@ public class ParserUtil {
if
(
"SELECT"
.
equals
(
s
))
{
return
KEYWORD
;
}
if
(
functionsAs
Keywords
)
{
if
(
additional
Keywords
)
{
if
(
"SYSDATE"
.
equals
(
s
)
||
"SYSTIME"
.
equals
(
s
)
||
"SYSTIMESTAMP"
.
equals
(
s
))
{
return
KEYWORD
;
}
...
...
@@ -178,8 +181,8 @@ public class ParserUtil {
if
(
"TRUE"
.
equals
(
s
))
{
return
TRUE
;
}
if
(
functionsAs
Keywords
)
{
if
(
"TODAY"
.
equals
(
s
))
{
if
(
additional
Keywords
)
{
if
(
"TODAY"
.
equals
(
s
)
||
"TOP"
.
equals
(
s
)
)
{
return
KEYWORD
;
}
}
...
...
h2/src/test/org/h2/test/scripts/TestScript.java
浏览文件 @
bf06f2b4
...
...
@@ -87,6 +87,7 @@ public class TestScript extends TestBase {
testScript
(
"testScript.sql"
);
testScript
(
"derived-column-names.sql"
);
testScript
(
"dual.sql"
);
testScript
(
"indexes.sql"
);
testScript
(
"information_schema.sql"
);
testScript
(
"joins.sql"
);
...
...
h2/src/test/org/h2/test/scripts/dual.sql
0 → 100644
浏览文件 @
bf06f2b4
-- Copyright 2004-2018 H2 Group. Multiple-Licensed under the MPL 2.0,
-- and the EPL 1.0 (http://h2database.com/html/license.html).
-- Initial Developer: H2 Group
--
SELECT
*
FROM
DUAL
;
>>
1
CREATE
TABLE
DUAL
(
A
INT
);
>
ok
INSERT
INTO
DUAL
VALUES
(
2
);
>
update
count
:
1
SELECT
A
FROM
DUAL
;
>>
2
SELECT
*
FROM
SYS
.
DUAL
;
>>
1
DROP
TABLE
DUAL
;
>
ok
SET
MODE
DB2
;
>
ok
SELECT
*
FROM
SYSDUMMY1
;
>>
1
CREATE
TABLE
SYSDUMMY1
(
A
INT
);
>
ok
INSERT
INTO
SYSDUMMY1
VALUES
(
2
);
>
update
count
:
1
SELECT
A
FROM
SYSDUMMY1
;
>>
2
SELECT
*
FROM
SYSIBM
.
SYSDUMMY1
;
>>
1
DROP
TABLE
SYSDUMMY1
;
>
ok
SET
MODE
Regular
;
>
ok
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论