Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b3f0513a
提交
b3f0513a
authored
17 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
cbcdff05
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
30 行增加
和
7 行删除
+30
-7
DatabaseEventListener.java
h2/src/main/org/h2/api/DatabaseEventListener.java
+4
-4
Command.java
h2/src/main/org/h2/command/Command.java
+1
-1
AlterUser.java
h2/src/main/org/h2/command/ddl/AlterUser.java
+15
-1
GrantRevoke.java
h2/src/main/org/h2/command/ddl/GrantRevoke.java
+10
-1
没有找到文件。
h2/src/main/org/h2/api/DatabaseEventListener.java
浏览文件 @
b3f0513a
...
@@ -77,10 +77,10 @@ public interface DatabaseEventListener extends EventListener {
...
@@ -77,10 +77,10 @@ public interface DatabaseEventListener extends EventListener {
* This method is called for long running events, such as recovering,
* This method is called for long running events, such as recovering,
* scanning a file or building an index.
* scanning a file or building an index.
*
*
* @param state
-
the state
* @param state the state
* @param name
-
the object name
* @param name the object name
* @param x
-
the current position
* @param x the current position
* @param max
-
the highest value
* @param max the highest value
*/
*/
void
setProgress
(
int
state
,
String
name
,
int
x
,
int
max
);
void
setProgress
(
int
state
,
String
name
,
int
x
,
int
max
);
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/Command.java
浏览文件 @
b3f0513a
...
@@ -122,7 +122,7 @@ public abstract class Command implements CommandInterface {
...
@@ -122,7 +122,7 @@ public abstract class Command implements CommandInterface {
/**
/**
* Execute a query and return a local result set.
* Execute a query and return a local result set.
* This method prepares everything and calls {@link
query
} finally.
* This method prepares everything and calls {@link
#query(int)
} finally.
*
*
* @param maxrows the maximum number of rows to return
* @param maxrows the maximum number of rows to return
* @return the local result set
* @return the local result set
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/ddl/AlterUser.java
浏览文件 @
b3f0513a
...
@@ -23,7 +23,21 @@ import org.h2.util.ByteUtils;
...
@@ -23,7 +23,21 @@ import org.h2.util.ByteUtils;
*/
*/
public
class
AlterUser
extends
DefineCommand
{
public
class
AlterUser
extends
DefineCommand
{
public
static
final
int
SET_PASSWORD
=
0
,
RENAME
=
1
,
ADMIN
=
2
;
/**
* The command type to set the password.
*/
public
static
final
int
SET_PASSWORD
=
0
;
/**
* The command type to rename the user.
*/
public
static
final
int
RENAME
=
1
;
/**
* The command type to change the admin flag.
*/
public
static
final
int
ADMIN
=
2
;
private
int
type
;
private
int
type
;
private
User
user
;
private
User
user
;
private
String
newName
;
private
String
newName
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/command/ddl/GrantRevoke.java
浏览文件 @
b3f0513a
...
@@ -26,7 +26,16 @@ import org.h2.util.ObjectArray;
...
@@ -26,7 +26,16 @@ import org.h2.util.ObjectArray;
*/
*/
public
class
GrantRevoke
extends
DefineCommand
{
public
class
GrantRevoke
extends
DefineCommand
{
public
static
final
int
GRANT
=
0
,
REVOKE
=
1
;
/**
* The operation type to grant a right.
*/
public
static
final
int
GRANT
=
0
;
/**
* The operation type to revoke a right.
*/
public
static
final
int
REVOKE
=
1
;
private
ObjectArray
roleNames
;
private
ObjectArray
roleNames
;
private
int
operationType
;
private
int
operationType
;
private
int
rightMask
;
private
int
rightMask
;
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论