Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
bfc577d3
提交
bfc577d3
authored
7月 15, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move WITH test from testScript.sql to with.sql
上级
18f68c33
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
30 行增加
和
29 行删除
+30
-29
with.sql
h2/src/test/org/h2/test/scripts/dml/with.sql
+30
-0
testScript.sql
h2/src/test/org/h2/test/scripts/testScript.sql
+0
-29
没有找到文件。
h2/src/test/org/h2/test/scripts/dml/with.sql
浏览文件 @
bfc577d3
...
@@ -2,6 +2,36 @@
...
@@ -2,6 +2,36 @@
-- and the EPL 1.0 (http://h2database.com/html/license.html).
-- and the EPL 1.0 (http://h2database.com/html/license.html).
-- Initial Developer: H2 Group
-- Initial Developer: H2 Group
--
--
create
table
folder
(
id
int
primary
key
,
name
varchar
(
255
),
parent
int
);
>
ok
insert
into
folder
values
(
1
,
null
,
null
),
(
2
,
'bin'
,
1
),
(
3
,
'docs'
,
1
),
(
4
,
'html'
,
3
),
(
5
,
'javadoc'
,
3
),
(
6
,
'ext'
,
1
),
(
7
,
'service'
,
1
),
(
8
,
'src'
,
1
),
(
9
,
'docsrc'
,
8
),
(
10
,
'installer'
,
8
),
(
11
,
'main'
,
8
),
(
12
,
'META-INF'
,
11
),
(
13
,
'org'
,
11
),
(
14
,
'h2'
,
13
),
(
15
,
'test'
,
8
),
(
16
,
'tools'
,
8
);
>
update
count
:
16
with
link
(
id
,
name
,
level
)
as
(
select
id
,
name
,
0
from
folder
where
parent
is
null
union
all
select
folder
.
id
,
ifnull
(
link
.
name
||
'/'
,
''
)
||
folder
.
name
,
level
+
1
from
link
inner
join
folder
on
link
.
id
=
folder
.
parent
)
select
name
from
link
where
name
is
not
null
order
by
cast
(
id
as
int
);
>
NAME
>
-----------------
>
bin
>
docs
>
docs
/
html
>
docs
/
javadoc
>
ext
>
service
>
src
>
src
/
docsrc
>
src
/
installer
>
src
/
main
>
src
/
main
/
META
-
INF
>
src
/
main
/
org
>
src
/
main
/
org
/
h2
>
src
/
test
>
src
/
tools
>
rows
(
ordered
):
15
drop
table
folder
;
>
ok
explain
with
recursive
r
(
n
)
as
(
explain
with
recursive
r
(
n
)
as
(
(
select
1
)
union
all
(
select
n
+
1
from
r
where
n
<
3
)
(
select
1
)
union
all
(
select
n
+
1
from
r
where
n
<
3
)
)
)
...
...
h2/src/test/org/h2/test/scripts/testScript.sql
浏览文件 @
bfc577d3
...
@@ -505,35 +505,6 @@ drop table test;
...
@@ -505,35 +505,6 @@ drop table test;
explain
analyze
select
1
;
explain
analyze
select
1
;
>>
SELECT
1
FROM
SYSTEM_RANGE
(
1
,
1
)
/* PUBLIC.RANGE_INDEX */
/* scanCount: 2 */
>>
SELECT
1
FROM
SYSTEM_RANGE
(
1
,
1
)
/* PUBLIC.RANGE_INDEX */
/* scanCount: 2 */
create
table
folder
(
id
int
primary
key
,
name
varchar
(
255
),
parent
int
);
>
ok
insert
into
folder
values
(
1
,
null
,
null
),
(
2
,
'bin'
,
1
),
(
3
,
'docs'
,
1
),
(
4
,
'html'
,
3
),
(
5
,
'javadoc'
,
3
),
(
6
,
'ext'
,
1
),
(
7
,
'service'
,
1
),
(
8
,
'src'
,
1
),
(
9
,
'docsrc'
,
8
),
(
10
,
'installer'
,
8
),
(
11
,
'main'
,
8
),
(
12
,
'META-INF'
,
11
),
(
13
,
'org'
,
11
),
(
14
,
'h2'
,
13
),
(
15
,
'test'
,
8
),
(
16
,
'tools'
,
8
);
>
update
count
:
16
with
link
(
id
,
name
,
level
)
as
(
select
id
,
name
,
0
from
folder
where
parent
is
null
union
all
select
folder
.
id
,
ifnull
(
link
.
name
||
'/'
,
''
)
||
folder
.
name
,
level
+
1
from
link
inner
join
folder
on
link
.
id
=
folder
.
parent
)
select
name
from
link
where
name
is
not
null
order
by
cast
(
id
as
int
);
>
NAME
>
-----------------
>
bin
>
docs
>
docs
/
html
>
docs
/
javadoc
>
ext
>
service
>
src
>
src
/
docsrc
>
src
/
installer
>
src
/
main
>
src
/
main
/
META
-
INF
>
src
/
main
/
org
>
src
/
main
/
org
/
h2
>
src
/
test
>
src
/
tools
>
rows
(
ordered
):
15
drop
table
folder
;
>
ok
create
table
test
(
id
int
);
create
table
test
(
id
int
);
>
ok
>
ok
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论