Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
05c6a343
提交
05c6a343
authored
1月 25, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Document UNION evaluation order.
上级
a8424521
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
1637 行增加
和
1569 行删除
+1637
-1569
help.csv
h2/src/docsrc/help/help.csv
+6
-2
changelog.html
h2/src/docsrc/html/changelog.html
+1
-1
roadmap.html
h2/src/docsrc/html/roadmap.html
+1
-0
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+548
-521
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+548
-521
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+531
-522
tools.sql
h2/src/test/org/h2/test/todo/tools.sql
+1
-1
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/docsrc/help/help.csv
浏览文件 @
05c6a343
...
...
@@ -21,6 +21,10 @@ LIMIT limits the number of rows returned by the query, OFFSET specified
how many rows to skip. SAMPLE_SIZE limits the number of rows read for
aggregate queries.
Multiple set operators (UNION/INTERSECT/MINUS/EXPECT) are evaluated
from left to right. For compatibility with other databases and future versions
of H2 please use parentheses.
If FOR UPDATE is specified, the tables are locked for writing.
","
SELECT * FROM TEST;
...
...
@@ -3209,9 +3213,9 @@ SELECT ""Last Name"" FROM CSVREAD('address.csv');
"Functions (System)","CSVWRITE","
CSVWRITE ( fileNameString, queryString [, csvOptions [, lineSepString] ] )
","
Writes a CSV (comma separated values). The file is overwritten if it exists.
Writes a CSV (comma separated values). The file is overwritten if it exists.
If only a file name is specified, it will be written to the current working directory.
For each parameter, NULL means the default value should be used.
For each parameter, NULL means the default value should be used.
The default charset is the default value for this system, and the default field separator is a comma.
The values are converted to text using the default string representation;
...
...
h2/src/docsrc/html/changelog.html
浏览文件 @
05c6a343
...
...
@@ -19,7 +19,7 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Nested UNION/INTERSECT queries with brackets could produce the wrong result if used within a subquery. Example:
select count(*) from (select 1 union (select 2 intersect select 2)) x;
select count(*) from (select 1 union (select 2 intersect select 2)) x;
</li><li>
Comparing an column against a constant expression with a higher precision or length
than the column could give wrong results (the expression was truncated before comparing).
</li><li>
Improved PostgreSQL compatibility (support SHOW DEFAULT_TRANSACTION_ISOLATION).
...
...
h2/src/docsrc/html/roadmap.html
浏览文件 @
05c6a343
...
...
@@ -473,6 +473,7 @@ See also <a href="build.html#providing_patches">Providing Patches</a>.
</li><li>
Automatic mixed mode: support a port range list (to avoid firewall problems).
</li><li>
Support the pseudo column rowid, oid, _rowid_.
</li><li>
Support TRUNCATE for linked tables.
</li><li>
UNION: evaluate INTERSECT before UNION (like most other database except Oracle).
</li></ul>
<h2>
Not Planned
</h2>
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
05c6a343
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
05c6a343
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
05c6a343
差异被折叠。
点击展开。
h2/src/test/org/h2/test/todo/tools.sql
浏览文件 @
05c6a343
...
...
@@ -31,7 +31,7 @@ insert into test values('010203040506070809');
select
first_bytes
(
data
,
3
)
from
test
;
-- encrypt and decrypt strings
CALL
CAST
(
ENCRYPT
(
'AES'
,
HASH
(
'SHA256'
,
STRINGTOUTF8
(
'key'
),
1
),
STRINGTOUTF8
(
'Hello'
))
AS
VARCHAR
);
CALL
CAST
(
ENCRYPT
(
'AES'
,
HASH
(
'SHA256'
,
STRINGTOUTF8
(
'key'
),
1
),
STRINGTOUTF8
(
'Hello'
))
AS
VARCHAR
);
CALL
TRIM
(
CHAR
(
0
)
FROM
UTF8TOSTRING
(
DECRYPT
(
'AES'
,
HASH
(
'SHA256'
,
STRINGTOUTF8
(
'key'
),
1
),
'16e44604230717eec9f5fa6058e77e83'
)));
DROP
ALIAS
ENC
;
DROP
ALIAS
DEC
;
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
05c6a343
...
...
@@ -629,4 +629,4 @@ sweden abbreviated xmx trede googlecode gustav standing hashes
decompressed expansion ziv abbreviated augments omitted gain
subtracted maxed logical lempel increases sibling impersonate proper remembers
moon centric adeptia workflows generalized bpchar binaries incremental poor
slowly prefs
slowly prefs
precedence
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论