Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b514ec22
提交
b514ec22
authored
10月 07, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
New system table INFORMATION_SCHEMA.SESSION_STATE.
上级
f35a2f43
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
71 行增加
和
1 行删除
+71
-1
MetaTable.java
h2/src/main/org/h2/table/MetaTable.java
+60
-1
TestMetaData.java
h2/src/test/org/h2/test/jdbc/TestMetaData.java
+11
-0
没有找到文件。
h2/src/main/org/h2/table/MetaTable.java
浏览文件 @
b514ec22
...
@@ -94,7 +94,8 @@ public class MetaTable extends Table {
...
@@ -94,7 +94,8 @@ public class MetaTable extends Table {
private
static
final
int
TRIGGERS
=
24
;
private
static
final
int
TRIGGERS
=
24
;
private
static
final
int
SESSIONS
=
25
;
private
static
final
int
SESSIONS
=
25
;
private
static
final
int
LOCKS
=
26
;
private
static
final
int
LOCKS
=
26
;
private
static
final
int
META_TABLE_TYPE_COUNT
=
LOCKS
+
1
;
private
static
final
int
SESSION_STATE
=
27
;
private
static
final
int
META_TABLE_TYPE_COUNT
=
SESSION_STATE
+
1
;
private
final
int
type
;
private
final
int
type
;
private
final
int
indexColumn
;
private
final
int
indexColumn
;
...
@@ -486,6 +487,14 @@ public class MetaTable extends Table {
...
@@ -486,6 +487,14 @@ public class MetaTable extends Table {
});
});
break
;
break
;
}
}
case
SESSION_STATE:
{
setObjectName
(
"SESSION_STATE"
);
cols
=
createColumns
(
new
String
[]{
"KEY"
,
"SQL"
,
});
break
;
}
default
:
default
:
throw
Message
.
getInternalError
(
"type="
+
type
);
throw
Message
.
getInternalError
(
"type="
+
type
);
}
}
...
@@ -1532,6 +1541,56 @@ public class MetaTable extends Table {
...
@@ -1532,6 +1541,56 @@ public class MetaTable extends Table {
}
}
break
;
break
;
}
}
case
SESSION_STATE:
{
String
[]
variableNames
=
session
.
getVariableNames
();
for
(
int
i
=
0
;
i
<
variableNames
.
length
;
i
++)
{
String
name
=
variableNames
[
i
];
Value
v
=
session
.
getVariable
(
name
);
add
(
rows
,
new
String
[]
{
// KEY
"@"
+
name
,
// SQL
"SET @"
+
name
+
" "
+
v
.
getSQL
()
});
}
ObjectArray
tables
=
session
.
getLocalTempTables
();
for
(
int
i
=
0
;
i
<
tables
.
size
();
i
++)
{
Table
table
=
(
Table
)
tables
.
get
(
i
);
add
(
rows
,
new
String
[]
{
// KEY
"TABLE "
+
table
.
getName
(),
// SQL
table
.
getCreateSQL
()
});
}
String
[]
path
=
session
.
getSchemaSearchPath
();
if
(
path
!=
null
&&
path
.
length
>
0
)
{
StringBuffer
buff
=
new
StringBuffer
();
buff
.
append
(
"SET SCHEMA_SEARCH_PATH "
);
for
(
int
i
=
0
;
i
<
path
.
length
;
i
++)
{
if
(
i
>
0
)
{
buff
.
append
(
", "
);
}
buff
.
append
(
StringUtils
.
quoteIdentifier
(
path
[
i
]));
}
add
(
rows
,
new
String
[]
{
// KEY
"SCHEMA_SEARCH_PATH"
,
// SQL
buff
.
toString
()
});
}
String
schema
=
session
.
getCurrentSchemaName
();
if
(
schema
!=
null
)
{
add
(
rows
,
new
String
[]
{
// KEY
"SCHEMA"
,
// SQL
"SET SCHEMA "
+
StringUtils
.
quoteIdentifier
(
schema
)
});
}
break
;
}
default
:
default
:
throw
Message
.
getInternalError
(
"type="
+
type
);
throw
Message
.
getInternalError
(
"type="
+
type
);
}
}
...
...
h2/src/test/org/h2/test/jdbc/TestMetaData.java
浏览文件 @
b514ec22
...
@@ -28,6 +28,15 @@ public class TestMetaData extends TestBase {
...
@@ -28,6 +28,15 @@ public class TestMetaData extends TestBase {
private
DatabaseMetaData
meta
;
private
DatabaseMetaData
meta
;
private
Statement
stat
;
private
Statement
stat
;
private
String
catalog
=
"METADATA"
;
private
String
catalog
=
"METADATA"
;
/**
* Run just this test.
*
* @param a ignored
*/
public
static
void
main
(
String
[]
a
)
throws
Exception
{
TestBase
.
createCaller
().
init
().
test
();
}
public
void
test
()
throws
SQLException
{
public
void
test
()
throws
SQLException
{
deleteDb
(
"metaData"
);
deleteDb
(
"metaData"
);
...
@@ -119,6 +128,8 @@ public class TestMetaData extends TestBase {
...
@@ -119,6 +128,8 @@ public class TestMetaData extends TestBase {
rs
.
next
();
rs
.
next
();
assertEquals
(
"SESSIONS"
,
rs
.
getString
(
"TABLE_NAME"
));
assertEquals
(
"SESSIONS"
,
rs
.
getString
(
"TABLE_NAME"
));
rs
.
next
();
rs
.
next
();
assertEquals
(
"SESSION_STATE"
,
rs
.
getString
(
"TABLE_NAME"
));
rs
.
next
();
assertEquals
(
"SETTINGS"
,
rs
.
getString
(
"TABLE_NAME"
));
assertEquals
(
"SETTINGS"
,
rs
.
getString
(
"TABLE_NAME"
));
rs
.
next
();
rs
.
next
();
assertEquals
(
"TABLES"
,
rs
.
getString
(
"TABLE_NAME"
));
assertEquals
(
"TABLES"
,
rs
.
getString
(
"TABLE_NAME"
));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论