Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
88f5caea
提交
88f5caea
authored
8月 22, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
d103edc1
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
22 行增加
和
14 行删除
+22
-14
changelog.html
h2/src/docsrc/html/changelog.html
+2
-1
ExpressionColumn.java
h2/src/main/org/h2/expression/ExpressionColumn.java
+6
-1
Function.java
h2/src/main/org/h2/expression/Function.java
+12
-12
testSimple.in.txt
h2/src/test/org/h2/test/testSimple.in.txt
+2
-0
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
88f5caea
...
@@ -16,7 +16,8 @@ Change Log
...
@@ -16,7 +16,8 @@ Change Log
<h1>
Change Log
</h1>
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
The build target 'build jarSmall' now includes the embedded database.
<ul><li>
The H2 Console replaced an empty user name with a single space.
</li><li>
The build target 'build jarSmall' now includes the embedded database.
</li><li>
JdbcDataSource now keeps the password in a char array where possible.
</li><li>
JdbcDataSource now keeps the password in a char array where possible.
</li><li>
ResultSet.absolute did not always work with large result sets.
</li><li>
ResultSet.absolute did not always work with large result sets.
</li><li>
Column aliases can now be used in GROUP BY and HAVING.
</li><li>
Column aliases can now be used in GROUP BY and HAVING.
...
...
h2/src/main/org/h2/expression/ExpressionColumn.java
浏览文件 @
88f5caea
...
@@ -11,6 +11,7 @@ import java.util.HashMap;
...
@@ -11,6 +11,7 @@ import java.util.HashMap;
import
org.h2.command.Parser
;
import
org.h2.command.Parser
;
import
org.h2.command.dml.Select
;
import
org.h2.command.dml.Select
;
import
org.h2.command.dml.SelectListColumnResolver
;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Database
;
import
org.h2.engine.Database
;
import
org.h2.engine.Session
;
import
org.h2.engine.Session
;
...
@@ -101,9 +102,13 @@ public class ExpressionColumn extends Expression {
...
@@ -101,9 +102,13 @@ public class ExpressionColumn extends Expression {
column
=
col
;
column
=
col
;
this
.
resolver
=
resolver
;
this
.
resolver
=
resolver
;
}
else
if
(
queryLevel
==
level
&&
this
.
resolver
!=
resolver
)
{
}
else
if
(
queryLevel
==
level
&&
this
.
resolver
!=
resolver
)
{
if
(
resolver
instanceof
SelectListColumnResolver
)
{
// ignore - already mapped, that's ok
}
else
{
throw
Message
.
getSQLException
(
ErrorCode
.
AMBIGUOUS_COLUMN_NAME_1
,
columnName
);
throw
Message
.
getSQLException
(
ErrorCode
.
AMBIGUOUS_COLUMN_NAME_1
,
columnName
);
}
}
}
}
}
public
Expression
optimize
(
Session
session
)
throws
SQLException
{
public
Expression
optimize
(
Session
session
)
throws
SQLException
{
if
(
resolver
==
null
)
{
if
(
resolver
==
null
)
{
...
...
h2/src/main/org/h2/expression/Function.java
浏览文件 @
88f5caea
h2/src/test/org/h2/test/testSimple.in.txt
浏览文件 @
88f5caea
SELECT X FROM dual GROUP BY X HAVING X=AVG(X);
> 1;
create view test_view(id,) as select * from dual;
create view test_view(id,) as select * from dual;
drop view test_view;
drop view test_view;
create table test(id int,);
create table test(id int,);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论