Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b6148dfe
提交
b6148dfe
authored
7月 06, 2018
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
replace isPersistent with isTemporary in params
for consistency
上级
a19a9098
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
39 行删除
+39
-39
Parser.java
h2/src/main/org/h2/command/Parser.java
+18
-18
CreateView.java
h2/src/main/org/h2/command/ddl/CreateView.java
+2
-2
TableView.java
h2/src/main/org/h2/table/TableView.java
+19
-19
没有找到文件。
h2/src/main/org/h2/command/Parser.java
浏览文件 @
b6148dfe
...
@@ -1147,7 +1147,7 @@ public class Parser {
...
@@ -1147,7 +1147,7 @@ public class Parser {
queryAlias
,
querySQLOutput
[
0
],
queryAlias
,
querySQLOutput
[
0
],
columnTemplateList
,
false
/* no recursion */
,
columnTemplateList
,
false
/* no recursion */
,
false
/* do not add to session */
,
false
/* do not add to session */
,
false
/* isPersistent
*/
,
true
/* isTemporary
*/
,
session
);
session
);
TableFilter
sourceTableFilter
=
new
TableFilter
(
session
,
TableFilter
sourceTableFilter
=
new
TableFilter
(
session
,
temporarySourceTableView
,
queryAlias
,
temporarySourceTableView
,
queryAlias
,
...
@@ -5168,16 +5168,16 @@ public class Parser {
...
@@ -5168,16 +5168,16 @@ public class Parser {
// this WITH statement might not be a temporary view - allow optional keyword to
// this WITH statement might not be a temporary view - allow optional keyword to
// tell us that this keyword. This feature will not be documented - H2 internal use only.
// tell us that this keyword. This feature will not be documented - H2 internal use only.
boolean
is
Persistent
=
readIf
(
"PERSISTENT"
);
boolean
is
Temporary
=
!
readIf
(
"PERSISTENT"
);
// this WITH statement is not a temporary view - it is part of a persistent view
// this WITH statement is not a temporary view - it is part of a persistent view
// as in CREATE VIEW abc AS WITH my_cte - this auto detects that condition
// as in CREATE VIEW abc AS WITH my_cte - this auto detects that condition
if
(
session
.
isParsingCreateView
())
{
if
(
session
.
isParsingCreateView
())
{
isPersistent
=
tru
e
;
isTemporary
=
fals
e
;
}
}
do
{
do
{
viewsCreated
.
add
(
parseSingleCommonTableExpression
(
is
Persistent
));
viewsCreated
.
add
(
parseSingleCommonTableExpression
(
is
Temporary
));
}
while
(
readIf
(
","
));
}
while
(
readIf
(
","
));
Prepared
p
;
Prepared
p
;
...
@@ -5219,13 +5219,13 @@ public class Parser {
...
@@ -5219,13 +5219,13 @@ public class Parser {
// clean up temporary views starting with last to first (in case of
// clean up temporary views starting with last to first (in case of
// dependencies) - but only if they are not persistent
// dependencies) - but only if they are not persistent
if
(
!
isPersistent
)
{
if
(
isTemporary
)
{
p
.
setCteCleanups
(
viewsCreated
);
p
.
setCteCleanups
(
viewsCreated
);
}
}
return
p
;
return
p
;
}
}
private
TableView
parseSingleCommonTableExpression
(
boolean
is
Persistent
)
{
private
TableView
parseSingleCommonTableExpression
(
boolean
is
Temporary
)
{
String
cteViewName
=
readIdentifierWithSchema
();
String
cteViewName
=
readIdentifierWithSchema
();
Schema
schema
=
getSchema
();
Schema
schema
=
getSchema
();
ArrayList
<
Column
>
columns
=
Utils
.
newSmallArrayList
();
ArrayList
<
Column
>
columns
=
Utils
.
newSmallArrayList
();
...
@@ -5243,7 +5243,7 @@ public class Parser {
...
@@ -5243,7 +5243,7 @@ public class Parser {
}
}
Table
oldViewFound
;
Table
oldViewFound
;
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
oldViewFound
=
getSchema
().
findTableOrView
(
session
,
cteViewName
);
oldViewFound
=
getSchema
().
findTableOrView
(
session
,
cteViewName
);
}
else
{
}
else
{
oldViewFound
=
session
.
findLocalTempTable
(
cteViewName
);
oldViewFound
=
session
.
findLocalTempTable
(
cteViewName
);
...
@@ -5259,7 +5259,7 @@ public class Parser {
...
@@ -5259,7 +5259,7 @@ public class Parser {
throw
DbException
.
get
(
ErrorCode
.
TABLE_OR_VIEW_ALREADY_EXISTS_1
,
throw
DbException
.
get
(
ErrorCode
.
TABLE_OR_VIEW_ALREADY_EXISTS_1
,
cteViewName
);
cteViewName
);
}
}
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
oldViewFound
.
lock
(
session
,
true
,
true
);
oldViewFound
.
lock
(
session
,
true
,
true
);
database
.
removeSchemaObject
(
session
,
oldViewFound
);
database
.
removeSchemaObject
(
session
,
oldViewFound
);
...
@@ -5275,33 +5275,33 @@ public class Parser {
...
@@ -5275,33 +5275,33 @@ public class Parser {
* data and table if we don't have a working CTE already.
* data and table if we don't have a working CTE already.
*/
*/
Table
recursiveTable
=
TableView
.
createShadowTableForRecursiveTableExpression
(
Table
recursiveTable
=
TableView
.
createShadowTableForRecursiveTableExpression
(
isPersistent
,
session
,
cteViewName
,
schema
,
columns
,
database
);
isTemporary
,
session
,
cteViewName
,
schema
,
columns
,
database
);
List
<
Column
>
columnTemplateList
;
List
<
Column
>
columnTemplateList
;
String
[]
querySQLOutput
=
{
null
};
String
[]
querySQLOutput
=
{
null
};
try
{
try
{
read
(
"AS"
);
read
(
"AS"
);
read
(
"("
);
read
(
"("
);
Query
withQuery
=
parseSelect
();
Query
withQuery
=
parseSelect
();
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
withQuery
.
session
=
session
;
withQuery
.
session
=
session
;
}
}
read
(
")"
);
read
(
")"
);
columnTemplateList
=
TableView
.
createQueryColumnTemplateList
(
cols
,
withQuery
,
querySQLOutput
);
columnTemplateList
=
TableView
.
createQueryColumnTemplateList
(
cols
,
withQuery
,
querySQLOutput
);
}
finally
{
}
finally
{
TableView
.
destroyShadowTableForRecursiveExpression
(
is
Persistent
,
session
,
recursiveTable
);
TableView
.
destroyShadowTableForRecursiveExpression
(
is
Temporary
,
session
,
recursiveTable
);
}
}
return
createCTEView
(
cteViewName
,
return
createCTEView
(
cteViewName
,
querySQLOutput
[
0
],
columnTemplateList
,
querySQLOutput
[
0
],
columnTemplateList
,
true
/* allowRecursiveQueryDetection */
,
true
/* allowRecursiveQueryDetection */
,
true
/* add to session */
,
true
/* add to session */
,
is
Persistent
,
session
);
is
Temporary
,
session
);
}
}
private
TableView
createCTEView
(
String
cteViewName
,
String
querySQL
,
private
TableView
createCTEView
(
String
cteViewName
,
String
querySQL
,
List
<
Column
>
columnTemplateList
,
boolean
allowRecursiveQueryDetection
,
List
<
Column
>
columnTemplateList
,
boolean
allowRecursiveQueryDetection
,
boolean
addViewToSession
,
boolean
is
Persistent
,
Session
targetSession
)
{
boolean
addViewToSession
,
boolean
is
Temporary
,
Session
targetSession
)
{
Database
db
=
targetSession
.
getDatabase
();
Database
db
=
targetSession
.
getDatabase
();
Schema
schema
=
getSchemaWithDefault
();
Schema
schema
=
getSchemaWithDefault
();
int
id
=
db
.
allocateObjectId
();
int
id
=
db
.
allocateObjectId
();
...
@@ -5315,9 +5315,9 @@ public class Parser {
...
@@ -5315,9 +5315,9 @@ public class Parser {
view
=
new
TableView
(
schema
,
id
,
cteViewName
,
querySQL
,
view
=
new
TableView
(
schema
,
id
,
cteViewName
,
querySQL
,
parameters
,
columnTemplateArray
,
targetSession
,
parameters
,
columnTemplateArray
,
targetSession
,
allowRecursiveQueryDetection
,
false
/* literalsChecked */
,
true
/* isTableExpression */
,
allowRecursiveQueryDetection
,
false
/* literalsChecked */
,
true
/* isTableExpression */
,
is
Persistent
);
is
Temporary
);
if
(!
view
.
isRecursiveQueryDetected
()
&&
allowRecursiveQueryDetection
)
{
if
(!
view
.
isRecursiveQueryDetected
()
&&
allowRecursiveQueryDetection
)
{
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
db
.
addSchemaObject
(
targetSession
,
view
);
db
.
addSchemaObject
(
targetSession
,
view
);
view
.
lock
(
targetSession
,
true
,
true
);
view
.
lock
(
targetSession
,
true
,
true
);
db
.
removeSchemaObject
(
targetSession
,
view
);
db
.
removeSchemaObject
(
targetSession
,
view
);
...
@@ -5327,17 +5327,17 @@ public class Parser {
...
@@ -5327,17 +5327,17 @@ public class Parser {
view
=
new
TableView
(
schema
,
id
,
cteViewName
,
querySQL
,
parameters
,
view
=
new
TableView
(
schema
,
id
,
cteViewName
,
querySQL
,
parameters
,
columnTemplateArray
,
targetSession
,
columnTemplateArray
,
targetSession
,
false
/* assume recursive */
,
false
/* literalsChecked */
,
true
/* isTableExpression */
,
false
/* assume recursive */
,
false
/* literalsChecked */
,
true
/* isTableExpression */
,
is
Persistent
);
is
Temporary
);
}
}
// both removeSchemaObject and removeLocalTempTable hold meta locks
// both removeSchemaObject and removeLocalTempTable hold meta locks
db
.
unlockMeta
(
targetSession
);
db
.
unlockMeta
(
targetSession
);
}
}
view
.
setTableExpression
(
true
);
view
.
setTableExpression
(
true
);
view
.
setTemporary
(
!
isPersistent
);
view
.
setTemporary
(
isTemporary
);
view
.
setHidden
(
true
);
view
.
setHidden
(
true
);
view
.
setOnCommitDrop
(
false
);
view
.
setOnCommitDrop
(
false
);
if
(
addViewToSession
)
{
if
(
addViewToSession
)
{
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
db
.
addSchemaObject
(
targetSession
,
view
);
db
.
addSchemaObject
(
targetSession
,
view
);
view
.
unlock
(
targetSession
);
view
.
unlock
(
targetSession
);
db
.
unlockMeta
(
targetSession
);
db
.
unlockMeta
(
targetSession
);
...
...
h2/src/main/org/h2/command/ddl/CreateView.java
浏览文件 @
b6148dfe
...
@@ -119,10 +119,10 @@ public class CreateView extends SchemaCommand {
...
@@ -119,10 +119,10 @@ public class CreateView extends SchemaCommand {
if
(
isTableExpression
)
{
if
(
isTableExpression
)
{
view
=
TableView
.
createTableViewMaybeRecursive
(
getSchema
(),
id
,
viewName
,
querySQL
,
null
,
view
=
TableView
.
createTableViewMaybeRecursive
(
getSchema
(),
id
,
viewName
,
querySQL
,
null
,
columnTemplatesAsStrings
,
session
,
false
/* literalsChecked */
,
isTableExpression
,
columnTemplatesAsStrings
,
session
,
false
/* literalsChecked */
,
isTableExpression
,
true
/* isPersistent
*/
,
db
);
false
/*isTemporary
*/
,
db
);
}
else
{
}
else
{
view
=
new
TableView
(
getSchema
(),
id
,
viewName
,
querySQL
,
null
,
columnTemplatesAsUnknowns
,
session
,
view
=
new
TableView
(
getSchema
(),
id
,
viewName
,
querySQL
,
null
,
columnTemplatesAsUnknowns
,
session
,
false
/* allow recursive */
,
false
/* literalsChecked */
,
isTableExpression
,
true
);
false
/* allow recursive */
,
false
/* literalsChecked */
,
isTableExpression
,
false
/*temporary*/
);
}
}
}
else
{
}
else
{
// TODO support isTableExpression in replace function...
// TODO support isTableExpression in replace function...
...
...
h2/src/main/org/h2/table/TableView.java
浏览文件 @
b6148dfe
...
@@ -66,9 +66,9 @@ public class TableView extends Table {
...
@@ -66,9 +66,9 @@ public class TableView extends Table {
public
TableView
(
Schema
schema
,
int
id
,
String
name
,
String
querySQL
,
public
TableView
(
Schema
schema
,
int
id
,
String
name
,
String
querySQL
,
ArrayList
<
Parameter
>
params
,
Column
[]
columnTemplates
,
Session
session
,
ArrayList
<
Parameter
>
params
,
Column
[]
columnTemplates
,
Session
session
,
boolean
allowRecursive
,
boolean
literalsChecked
,
boolean
isTableExpression
,
boolean
is
Persistent
)
{
boolean
allowRecursive
,
boolean
literalsChecked
,
boolean
isTableExpression
,
boolean
is
Temporary
)
{
super
(
schema
,
id
,
name
,
false
,
true
);
super
(
schema
,
id
,
name
,
false
,
true
);
setTemporary
(
!
isPersistent
);
setTemporary
(
isTemporary
);
init
(
querySQL
,
params
,
columnTemplates
,
session
,
allowRecursive
,
literalsChecked
,
isTableExpression
);
init
(
querySQL
,
params
,
columnTemplates
,
session
,
allowRecursive
,
literalsChecked
,
isTableExpression
);
}
}
...
@@ -566,7 +566,7 @@ public class TableView extends Table {
...
@@ -566,7 +566,7 @@ public class TableView extends Table {
TableView
v
=
new
TableView
(
mainSchema
,
0
,
name
,
TableView
v
=
new
TableView
(
mainSchema
,
0
,
name
,
querySQL
,
query
.
getParameters
(),
null
/* column templates */
,
session
,
querySQL
,
query
.
getParameters
(),
null
/* column templates */
,
session
,
false
/* allow recursive */
,
true
/* literals have already been checked when parsing original query */
,
false
/* allow recursive */
,
true
/* literals have already been checked when parsing original query */
,
false
/* is table expression */
,
false
/* is persistent
*/
);
false
/* is table expression */
,
true
/*temporary
*/
);
if
(
v
.
createException
!=
null
)
{
if
(
v
.
createException
!=
null
)
{
throw
v
.
createException
;
throw
v
.
createException
;
}
}
...
@@ -726,16 +726,16 @@ public class TableView extends Table {
...
@@ -726,16 +726,16 @@ public class TableView extends Table {
* @param session the session
* @param session the session
* @param literalsChecked whether literals in the query are checked
* @param literalsChecked whether literals in the query are checked
* @param isTableExpression if this is a table expression
* @param isTableExpression if this is a table expression
* @param is
Persistent
whether the view is persisted
* @param is
Temporary
whether the view is persisted
* @param db the database
* @param db the database
* @return the view
* @return the view
*/
*/
public
static
TableView
createTableViewMaybeRecursive
(
Schema
schema
,
int
id
,
String
name
,
String
querySQL
,
public
static
TableView
createTableViewMaybeRecursive
(
Schema
schema
,
int
id
,
String
name
,
String
querySQL
,
ArrayList
<
Parameter
>
parameters
,
Column
[]
columnTemplates
,
Session
session
,
ArrayList
<
Parameter
>
parameters
,
Column
[]
columnTemplates
,
Session
session
,
boolean
literalsChecked
,
boolean
isTableExpression
,
boolean
is
Persistent
,
Database
db
)
{
boolean
literalsChecked
,
boolean
isTableExpression
,
boolean
is
Temporary
,
Database
db
)
{
Table
recursiveTable
=
TableView
.
createShadowTableForRecursiveTableExpression
(
isPersistent
,
session
,
name
,
Table
recursiveTable
=
createShadowTableForRecursiveTableExpression
(
isTemporary
,
session
,
name
,
schema
,
Arrays
.
asList
(
columnTemplates
),
db
);
schema
,
Arrays
.
asList
(
columnTemplates
),
db
);
List
<
Column
>
columnTemplateList
;
List
<
Column
>
columnTemplateList
;
...
@@ -747,25 +747,25 @@ public class TableView extends Table {
...
@@ -747,25 +747,25 @@ public class TableView extends Table {
try
{
try
{
Prepared
withQuery
=
session
.
prepare
(
querySQL
,
false
,
false
);
Prepared
withQuery
=
session
.
prepare
(
querySQL
,
false
,
false
);
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
withQuery
.
setSession
(
session
);
withQuery
.
setSession
(
session
);
}
}
columnTemplateList
=
TableView
.
createQueryColumnTemplateList
(
columnNames
.
toArray
(
new
String
[
1
]),
columnTemplateList
=
TableView
.
createQueryColumnTemplateList
(
columnNames
.
toArray
(
new
String
[
1
]),
(
Query
)
withQuery
,
querySQLOutput
);
(
Query
)
withQuery
,
querySQLOutput
);
}
finally
{
}
finally
{
TableView
.
destroyShadowTableForRecursiveExpression
(
isPersistent
,
session
,
recursiveTable
);
destroyShadowTableForRecursiveExpression
(
isTemporary
,
session
,
recursiveTable
);
}
}
// build with recursion turned on
// build with recursion turned on
TableView
view
=
new
TableView
(
schema
,
id
,
name
,
querySQL
,
TableView
view
=
new
TableView
(
schema
,
id
,
name
,
querySQL
,
parameters
,
columnTemplateList
.
toArray
(
columnTemplates
),
session
,
parameters
,
columnTemplateList
.
toArray
(
columnTemplates
),
session
,
true
/* try recursive */
,
literalsChecked
,
isTableExpression
,
is
Persistent
);
true
/* try recursive */
,
literalsChecked
,
isTableExpression
,
is
Temporary
);
// is recursion really detected ? if not - recreate it without recursion flag
// is recursion really detected ? if not - recreate it without recursion flag
// and no recursive index
// and no recursive index
if
(!
view
.
isRecursiveQueryDetected
())
{
if
(!
view
.
isRecursiveQueryDetected
())
{
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
db
.
addSchemaObject
(
session
,
view
);
db
.
addSchemaObject
(
session
,
view
);
view
.
lock
(
session
,
true
,
true
);
view
.
lock
(
session
,
true
,
true
);
session
.
getDatabase
().
removeSchemaObject
(
session
,
view
);
session
.
getDatabase
().
removeSchemaObject
(
session
,
view
);
...
@@ -779,7 +779,7 @@ public class TableView extends Table {
...
@@ -779,7 +779,7 @@ public class TableView extends Table {
}
}
view
=
new
TableView
(
schema
,
id
,
name
,
querySQL
,
parameters
,
view
=
new
TableView
(
schema
,
id
,
name
,
querySQL
,
parameters
,
columnTemplates
,
session
,
columnTemplates
,
session
,
false
/* detected not recursive */
,
literalsChecked
,
isTableExpression
,
is
Persistent
);
false
/* detected not recursive */
,
literalsChecked
,
isTableExpression
,
is
Temporary
);
}
}
return
view
;
return
view
;
...
@@ -823,7 +823,7 @@ public class TableView extends Table {
...
@@ -823,7 +823,7 @@ public class TableView extends Table {
/**
/**
* Create a table for a recursive query.
* Create a table for a recursive query.
*
*
* @param is
Persistent
whether the table is persisted
* @param is
Temporary
whether the table is persisted
* @param targetSession the session
* @param targetSession the session
* @param cteViewName the name
* @param cteViewName the name
* @param schema the schema
* @param schema the schema
...
@@ -831,7 +831,7 @@ public class TableView extends Table {
...
@@ -831,7 +831,7 @@ public class TableView extends Table {
* @param db the database
* @param db the database
* @return the table
* @return the table
*/
*/
public
static
Table
createShadowTableForRecursiveTableExpression
(
boolean
is
Persistent
,
Session
targetSession
,
public
static
Table
createShadowTableForRecursiveTableExpression
(
boolean
is
Temporary
,
Session
targetSession
,
String
cteViewName
,
Schema
schema
,
List
<
Column
>
columns
,
Database
db
)
{
String
cteViewName
,
Schema
schema
,
List
<
Column
>
columns
,
Database
db
)
{
// create table data object
// create table data object
...
@@ -839,16 +839,16 @@ public class TableView extends Table {
...
@@ -839,16 +839,16 @@ public class TableView extends Table {
recursiveTableData
.
id
=
db
.
allocateObjectId
();
recursiveTableData
.
id
=
db
.
allocateObjectId
();
recursiveTableData
.
columns
=
new
ArrayList
<>(
columns
);
recursiveTableData
.
columns
=
new
ArrayList
<>(
columns
);
recursiveTableData
.
tableName
=
cteViewName
;
recursiveTableData
.
tableName
=
cteViewName
;
recursiveTableData
.
temporary
=
!
isPersistent
;
recursiveTableData
.
temporary
=
isTemporary
;
recursiveTableData
.
persistData
=
true
;
recursiveTableData
.
persistData
=
true
;
recursiveTableData
.
persistIndexes
=
isPersistent
;
recursiveTableData
.
persistIndexes
=
!
isTemporary
;
recursiveTableData
.
create
=
true
;
recursiveTableData
.
create
=
true
;
recursiveTableData
.
session
=
targetSession
;
recursiveTableData
.
session
=
targetSession
;
// this gets a meta table lock that is not released
// this gets a meta table lock that is not released
Table
recursiveTable
=
schema
.
createTable
(
recursiveTableData
);
Table
recursiveTable
=
schema
.
createTable
(
recursiveTableData
);
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
// this unlock is to prevent lock leak from schema.createTable()
// this unlock is to prevent lock leak from schema.createTable()
db
.
unlockMeta
(
targetSession
);
db
.
unlockMeta
(
targetSession
);
synchronized
(
targetSession
)
{
synchronized
(
targetSession
)
{
...
@@ -863,14 +863,14 @@ public class TableView extends Table {
...
@@ -863,14 +863,14 @@ public class TableView extends Table {
/**
/**
* Remove a table for a recursive query.
* Remove a table for a recursive query.
*
*
* @param is
Persistent
whether the table is persisted
* @param is
Temporary
whether the table is persisted
* @param targetSession the session
* @param targetSession the session
* @param recursiveTable the table
* @param recursiveTable the table
*/
*/
public
static
void
destroyShadowTableForRecursiveExpression
(
boolean
is
Persistent
,
Session
targetSession
,
public
static
void
destroyShadowTableForRecursiveExpression
(
boolean
is
Temporary
,
Session
targetSession
,
Table
recursiveTable
)
{
Table
recursiveTable
)
{
if
(
recursiveTable
!=
null
)
{
if
(
recursiveTable
!=
null
)
{
if
(
isPersistent
)
{
if
(
!
isTemporary
)
{
recursiveTable
.
lock
(
targetSession
,
true
,
true
);
recursiveTable
.
lock
(
targetSession
,
true
,
true
);
targetSession
.
getDatabase
().
removeSchemaObject
(
targetSession
,
recursiveTable
);
targetSession
.
getDatabase
().
removeSchemaObject
(
targetSession
,
recursiveTable
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论