Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
a440ce8c
Unverified
提交
a440ce8c
authored
6 年前
作者:
Evgenij Ryazanov
提交者:
GitHub
6 年前
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1680 from katzyn/ddl
Assorted fixes for ALTER TABLE ALTER COLUMN
上级
a7c139bd
aac088ff
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
139 行增加
和
31 行删除
+139
-31
help.csv
h2/src/docsrc/help/help.csv
+12
-9
CommandInterface.java
h2/src/main/org/h2/command/CommandInterface.java
+4
-3
Parser.java
h2/src/main/org/h2/command/Parser.java
+49
-15
AlterTableAlterColumn.java
h2/src/main/org/h2/command/ddl/AlterTableAlterColumn.java
+1
-1
TestScript.java
h2/src/test/org/h2/test/scripts/TestScript.java
+3
-3
alterTableAlterColumn.sql
...rc/test/org/h2/test/scripts/ddl/alterTableAlterColumn.sql
+70
-0
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
a440ce8c
...
...
@@ -355,11 +355,13 @@ ALTER TABLE [ IF EXISTS ] tableName ALTER COLUMN columnName
| { RESTART WITH long }
| { SELECTIVITY int }
| { SET DEFAULT expression }
| { DROP DEFAULT }
| { SET ON UPDATE expression }
| {
SET NULL
}
| {
DROP ON UPDATE
}
| { SET NOT NULL }
| { SET { VISIBLE | INVISIBLE } }
| { DROP { DEFAULT | ON UPDATE } } }
| { DROP NOT NULL } | { SET NULL }
| { SET DATA TYPE dataType }
| { SET { VISIBLE | INVISIBLE } } }
","
Changes the data type of a column, rename a column,
change the identity value, or change the selectivity.
...
...
@@ -377,19 +379,20 @@ Selectivity 100 means values are unique, 10 means every distinct value appears 1
SET DEFAULT changes the default value of a column.
DROP DEFAULT removes the default value of a column.
SET ON UPDATE changes the value that is set on update if value for this column is not specified in update statement.
SET NULL sets a column to allow NULL. The row may not be part of a primary key.
Single column indexes on this column are dropped.
DROP ON UPDATE removes the value that is set on update of a column.
SET NOT NULL sets a column to not allow NULL. Rows may not contains NULL in this column.
SET INVISIBLE makes the column hidden, i.e. it will not appear in SELECT * results.
SET VISIBLE has the reverse effect.
DROP NOT NULL and SET NULL set a column to allow NULL. The row may not be part of a primary key.
DROP DEFAULT removes the default valu
e of a column.
SET DATA TYPE changes the data typ
e of a column.
DROP ON UPDATE removes the value that is set on update of a column.
SET INVISIBLE makes the column hidden, i.e. it will not appear in SELECT * results.
SET VISIBLE has the reverse effect.
This command commits an open transaction in this connection.
","
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/CommandInterface.java
浏览文件 @
a440ce8c
...
...
@@ -63,12 +63,13 @@ public interface CommandInterface {
int
ALTER_TABLE_ALTER_COLUMN_NOT_NULL
=
8
;
/**
* The type of a ALTER TABLE ALTER COLUMN
SE
T NULL statement.
* The type of a ALTER TABLE ALTER COLUMN
DROP NO
T NULL statement.
*/
int
ALTER_TABLE_ALTER_COLUMN_NULL
=
9
;
int
ALTER_TABLE_ALTER_COLUMN_
DROP_NOT_
NULL
=
9
;
/**
* The type of a ALTER TABLE ALTER COLUMN SET DEFAULT statement.
* The type of a ALTER TABLE ALTER COLUMN SET DEFAULT and ALTER TABLE ALTER
* COLUMN DROP DEFAULT statements.
*/
int
ALTER_TABLE_ALTER_COLUMN_DEFAULT
=
10
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/Parser.java
浏览文件 @
a440ce8c
...
...
@@ -7216,7 +7216,7 @@ public class Parser {
Column
column
=
columnIfTableExists
(
schema
,
tableName
,
columnName
,
ifTableExists
);
command
.
setOldColumn
(
column
);
if
(
nullConstraint
==
NullConstraintType
.
NULL_IS_ALLOWED
)
{
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NULL
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_
DROP_NOT_
NULL
);
}
else
{
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NOT_NULL
);
}
...
...
@@ -7247,10 +7247,8 @@ public class Parser {
command
.
setNewColumnName
(
newName
);
return
command
;
}
else
if
(
readIf
(
"DROP"
))
{
// PostgreSQL compatibility
if
(
readIf
(
"DEFAULT"
))
{
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
command
.
setTableName
(
tableName
);
command
.
setIfTableExists
(
ifTableExists
);
command
.
setOldColumn
(
column
);
...
...
@@ -7275,18 +7273,15 @@ public class Parser {
command
.
setTableName
(
tableName
);
command
.
setIfTableExists
(
ifTableExists
);
command
.
setOldColumn
(
column
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NULL
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_
DROP_NOT_
NULL
);
return
command
;
}
else
if
(
readIf
(
"TYPE"
))
{
// PostgreSQL compatibility
return
parseAlterTableAlterColumnType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
return
parseAlterTableAlterColumnDataType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
}
else
if
(
readIf
(
"SET"
))
{
if
(
readIf
(
"DATA"
))
{
// Derby compatibility
read
(
"TYPE"
);
return
parseAlterTableAlterColumnType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
return
parseAlterTableAlterColumnDataType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
}
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
...
...
@@ -7296,7 +7291,7 @@ public class Parser {
NullConstraintType
nullConstraint
=
parseNotNullConstraint
();
switch
(
nullConstraint
)
{
case
NULL_IS_ALLOWED:
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NULL
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_
DROP_NOT_
NULL
);
break
;
case
NULL_IS_NOT_ALLOWED:
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NOT_NULL
);
...
...
@@ -7343,8 +7338,7 @@ public class Parser {
command
.
setSelectivity
(
readExpression
());
return
command
;
}
else
{
return
parseAlterTableAlterColumnType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
return
parseAlterTableAlterColumnType
(
schema
,
tableName
,
columnName
,
ifTableExists
);
}
}
throw
getSyntaxError
();
...
...
@@ -7376,8 +7370,48 @@ public class Parser {
Column
oldColumn
=
columnIfTableExists
(
schema
,
tableName
,
columnName
,
ifTableExists
);
Column
newColumn
=
parseColumnForTable
(
columnName
,
oldColumn
==
null
?
true
:
oldColumn
.
isNullable
(),
true
);
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
if
(
readIf
(
CHECK
))
{
Expression
expr
=
readExpression
();
newColumn
.
addCheckConstraint
(
session
,
expr
);
}
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
command
.
setTableName
(
tableName
);
command
.
setIfTableExists
(
ifTableExists
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_CHANGE_TYPE
);
command
.
setOldColumn
(
oldColumn
);
command
.
setNewColumn
(
newColumn
);
return
command
;
}
private
AlterTableAlterColumn
parseAlterTableAlterColumnDataType
(
Schema
schema
,
String
tableName
,
String
columnName
,
boolean
ifTableExists
)
{
Column
oldColumn
=
columnIfTableExists
(
schema
,
tableName
,
columnName
,
ifTableExists
);
Column
newColumn
=
parseColumnWithType
(
columnName
,
true
);
if
(
oldColumn
!=
null
)
{
if
(!
oldColumn
.
isNullable
())
{
newColumn
.
setNullable
(
false
);
}
if
(!
oldColumn
.
getVisible
())
{
newColumn
.
setVisible
(
false
);
}
Expression
e
=
oldColumn
.
getDefaultExpression
();
if
(
e
!=
null
)
{
newColumn
.
setDefaultExpression
(
session
,
e
);
}
e
=
oldColumn
.
getOnUpdateExpression
();
if
(
e
!=
null
)
{
newColumn
.
setOnUpdateExpression
(
session
,
e
);
}
e
=
oldColumn
.
getCheckConstraint
(
session
,
columnName
);
if
(
e
!=
null
)
{
newColumn
.
addCheckConstraint
(
session
,
e
);
}
String
c
=
oldColumn
.
getComment
();
if
(
c
!=
null
)
{
newColumn
.
setComment
(
c
);
}
}
AlterTableAlterColumn
command
=
new
AlterTableAlterColumn
(
session
,
schema
);
command
.
setTableName
(
tableName
);
command
.
setIfTableExists
(
ifTableExists
);
command
.
setType
(
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_CHANGE_TYPE
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/ddl/AlterTableAlterColumn.java
浏览文件 @
a440ce8c
...
...
@@ -137,7 +137,7 @@ public class AlterTableAlterColumn extends CommandWithColumns {
db
.
updateMeta
(
session
,
table
);
break
;
}
case
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_NULL
:
{
case
CommandInterface
.
ALTER_TABLE_ALTER_COLUMN_
DROP_NOT_
NULL
:
{
if
(
oldColumn
.
isNullable
())
{
// no change
break
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/scripts/TestScript.java
浏览文件 @
a440ce8c
...
...
@@ -152,9 +152,9 @@ public class TestScript extends TestDb {
"uuid"
,
"varchar"
,
"varchar-ignorecase"
})
{
testScript
(
"datatypes/"
+
s
+
".sql"
);
}
for
(
String
s
:
new
String
[]
{
"alterTableAdd"
,
"alterTable
DropColumn"
,
"alterTableRename
"
,
"
createAlias"
,
"createSequence"
,
"createSynonym"
,
"createTable"
,
"createTrigger"
,
"createView
"
,
"dropDomain"
,
"dropIndex"
,
"dropSchema"
,
"truncateTable"
})
{
for
(
String
s
:
new
String
[]
{
"alterTableAdd"
,
"alterTable
AlterColumn"
,
"alterTableDropColumn
"
,
"
alterTableRename"
,
"createAlias"
,
"createSequence"
,
"createSynonym"
,
"createTable"
,
"createTrigger
"
,
"
createView"
,
"
dropDomain"
,
"dropIndex"
,
"dropSchema"
,
"truncateTable"
})
{
testScript
(
"ddl/"
+
s
+
".sql"
);
}
for
(
String
s
:
new
String
[]
{
"delete"
,
"error_reporting"
,
"insert"
,
"insertIgnore"
,
"merge"
,
"mergeUsing"
,
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/scripts/ddl/alterTableAlterColumn.sql
0 → 100644
浏览文件 @
a440ce8c
-- Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
-- and the EPL 1.0 (http://h2database.com/html/license.html).
-- Initial Developer: H2 Group
--
CREATE
TABLE
TEST
(
T
INT
);
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
-- SET DEFAULT
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
DEFAULT
1
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
DEFAULT
1
-- DROP DEFAULT
ALTER
TABLE
TEST
ALTER
COLUMN
T
DROP
DEFAULT
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
-- SET NOT NULL
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
NOT
NULL
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
NOT
NULL
-- DROP NOT NULL
ALTER
TABLE
TEST
ALTER
COLUMN
T
DROP
NOT
NULL
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
NOT
NULL
;
>
ok
-- SET NULL
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
NULL
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
-- SET DATA TYPE
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
DATA
TYPE
BIGINT
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
BIGINT
ALTER
TABLE
TEST
ALTER
COLUMN
T
INT
INVISIBLE
DEFAULT
1
ON
UPDATE
2
NOT
NULL
COMMENT
'C'
CHECK
T
<
100
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
INT
INVISIBLE
DEFAULT
1
ON
UPDATE
2
NOT
NULL
COMMENT
'C'
CHECK
(
T
<
100
)
ALTER
TABLE
TEST
ALTER
COLUMN
T
SET
DATA
TYPE
BIGINT
;
>
ok
SELECT
COLUMN_TYPE
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
COLUMN_NAME
=
'T'
;
>>
BIGINT
INVISIBLE
DEFAULT
1
ON
UPDATE
2
NOT
NULL
COMMENT
'C'
CHECK
(
T
<
100
)
DROP
TABLE
TEST
;
>
ok
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论