Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
f50d7b91
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f50d7b91
编写于
3月 03, 2022
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix order useless logic
上级
658ea0a0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
89 addition
and
178 deletion
+89
-178
src/client/src/tscGlobalmerge.c
src/client/src/tscGlobalmerge.c
+36
-35
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+46
-111
src/query/src/qExecutor.c
src/query/src/qExecutor.c
+7
-32
未找到文件。
src/client/src/tscGlobalmerge.c
浏览文件 @
f50d7b91
...
@@ -650,49 +650,49 @@ static void doExecuteFinalMerge(SOperatorInfo* pOperator, int32_t numOfExpr, SSD
...
@@ -650,49 +650,49 @@ static void doExecuteFinalMerge(SOperatorInfo* pOperator, int32_t numOfExpr, SSD
}
}
for
(
int32_t
i
=
0
;
i
<
pBlock
->
info
.
rows
;
++
i
)
{
for
(
int32_t
i
=
0
;
i
<
pBlock
->
info
.
rows
;
++
i
)
{
if
(
pInfo
->
hasPrev
)
{
if
(
!
pInfo
->
hasPrev
)
{
if
(
needToMerge
(
pBlock
,
pInfo
->
orderColumnList
,
i
,
pInfo
->
prevRow
))
{
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
savePrevOrderColumns
(
pInfo
->
prevRow
,
pInfo
->
orderColumnList
,
pBlock
,
i
,
&
pInfo
->
hasPrev
);
}
else
{
continue
;
doFinalizeResultImpl
(
pInfo
,
pCtx
,
numOfExpr
);
}
int32_t
numOfRows
=
getNumOfResult
(
pOperator
->
pRuntimeEnv
,
pInfo
->
binfo
.
pCtx
,
pOperator
->
numOfOutput
);
if
(
needToMerge
(
pBlock
,
pInfo
->
orderColumnList
,
i
,
pInfo
->
prevRow
))
{
setTagValueForMultipleRows
(
pCtx
,
pOperator
->
numOfOutput
,
numOfRows
);
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
continue
;
}
pInfo
->
binfo
.
pRes
->
info
.
rows
+=
numOfRows
;
doFinalizeResultImpl
(
pInfo
,
pCtx
,
numOfExpr
)
;
for
(
int32_t
j
=
0
;
j
<
numOfExpr
;
++
j
)
{
int32_t
numOfRows
=
getNumOfResult
(
pOperator
->
pRuntimeEnv
,
pInfo
->
binfo
.
pCtx
,
pOperator
->
numOfOutput
);
pCtx
[
j
].
pOutput
+=
(
pCtx
[
j
].
outputBytes
*
numOfRows
);
setTagValueForMultipleRows
(
pCtx
,
pOperator
->
numOfOutput
,
numOfRows
);
if
(
pCtx
[
j
].
functionId
==
TSDB_FUNC_TOP
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_BOTTOM
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_SAMPLE
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_UNIQUE
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_TAIL
)
{
if
(
j
>
0
)
pCtx
[
j
].
ptsOutputBuf
=
pCtx
[
j
-
1
].
pOutput
;
}
}
for
(
int32_t
j
=
0
;
j
<
numOfExpr
;
++
j
)
{
pInfo
->
binfo
.
pRes
->
info
.
rows
+=
numOfRows
;
if
(
pCtx
[
j
].
functionId
<
0
)
{
continue
;
}
{
assert
(
!
TSDB_FUNC_IS_SCALAR
(
pCtx
[
j
].
functionId
));
aAggs
[
pCtx
[
j
].
functionId
].
init
(
&
pCtx
[
j
],
pCtx
[
j
].
resultInfo
);
}
}
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
for
(
int32_t
j
=
0
;
j
<
numOfExpr
;
++
j
)
{
pCtx
[
j
].
pOutput
+=
(
pCtx
[
j
].
outputBytes
*
numOfRows
);
if
(
pCtx
[
j
].
functionId
==
TSDB_FUNC_TOP
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_BOTTOM
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_SAMPLE
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_UNIQUE
||
pCtx
[
j
].
functionId
==
TSDB_FUNC_TAIL
)
{
if
(
j
>
0
)
pCtx
[
j
].
ptsOutputBuf
=
pCtx
[
j
-
1
].
pOutput
;
}
}
for
(
int32_t
j
=
0
;
j
<
numOfExpr
;
++
j
)
{
if
(
pCtx
[
j
].
functionId
<
0
)
{
continue
;
}
{
assert
(
!
TSDB_FUNC_IS_SCALAR
(
pCtx
[
j
].
functionId
));
aAggs
[
pCtx
[
j
].
functionId
].
init
(
&
pCtx
[
j
],
pCtx
[
j
].
resultInfo
);
}
}
}
else
{
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
}
}
doMergeResultImpl
(
pOperator
,
pCtx
,
numOfExpr
,
i
,
addrPtr
);
savePrevOrderColumns
(
pInfo
->
prevRow
,
pInfo
->
orderColumnList
,
pBlock
,
i
,
&
pInfo
->
hasPrev
);
savePrevOrderColumns
(
pInfo
->
prevRow
,
pInfo
->
orderColumnList
,
pBlock
,
i
,
&
pInfo
->
hasPrev
);
}
}
{
for
(
int32_t
i
=
0
;
i
<
pBlock
->
info
.
numOfCols
;
++
i
)
{
for
(
int32_t
i
=
0
;
i
<
pBlock
->
info
.
numOfCols
;
++
i
)
{
pCtx
[
i
].
pInput
=
addrPtr
[
i
];
pCtx
[
i
].
pInput
=
addrPtr
[
i
];
}
}
}
tfree
(
addrPtr
);
tfree
(
addrPtr
);
...
@@ -900,6 +900,7 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
...
@@ -900,6 +900,7 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
SMultiwayMergeInfo
*
pAggInfo
=
pOperator
->
info
;
SMultiwayMergeInfo
*
pAggInfo
=
pOperator
->
info
;
SOperatorInfo
*
upstream
=
pOperator
->
upstream
[
0
];
SOperatorInfo
*
upstream
=
pOperator
->
upstream
[
0
];
SQueryAttr
*
pQueryAttr
=
pOperator
->
pRuntimeEnv
->
pQueryAttr
;
*
newgroup
=
false
;
*
newgroup
=
false
;
bool
handleData
=
false
;
bool
handleData
=
false
;
...
@@ -910,7 +911,7 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
...
@@ -910,7 +911,7 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
pAggInfo
->
hasPrev
=
false
;
// now we start from a new group data set.
pAggInfo
->
hasPrev
=
false
;
// now we start from a new group data set.
// not belongs to the same group, return the result of current group;
// not belongs to the same group, return the result of current group;
setInputDataBlock
(
pOperator
,
pAggInfo
->
binfo
.
pCtx
,
pAggInfo
->
pExistBlock
,
TSDB_ORDER_ASC
);
setInputDataBlock
(
pOperator
,
pAggInfo
->
binfo
.
pCtx
,
pAggInfo
->
pExistBlock
,
pQueryAttr
->
order
.
order
);
updateOutputBuf
(
&
pAggInfo
->
binfo
,
&
pAggInfo
->
bufCapacity
,
pAggInfo
->
pExistBlock
->
info
.
rows
,
pOperator
->
pRuntimeEnv
,
true
);
updateOutputBuf
(
&
pAggInfo
->
binfo
,
&
pAggInfo
->
bufCapacity
,
pAggInfo
->
pExistBlock
->
info
.
rows
,
pOperator
->
pRuntimeEnv
,
true
);
{
// reset output buffer
{
// reset output buffer
...
@@ -956,13 +957,13 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
...
@@ -956,13 +957,13 @@ SSDataBlock* doGlobalAggregate(void* param, bool* newgroup) {
*
newgroup
=
true
;
*
newgroup
=
true
;
pAggInfo
->
hasDataBlockForNewGroup
=
true
;
pAggInfo
->
hasDataBlockForNewGroup
=
true
;
pAggInfo
->
pExistBlock
=
pBlock
;
pAggInfo
->
pExistBlock
=
pBlock
;
savePrevOrderColumns
(
pAggInfo
->
prevRow
,
pAggInfo
->
groupColumnList
,
pBlock
,
0
,
&
pAggInfo
->
hasPrev
);
savePrevOrderColumns
(
pAggInfo
->
currentGroupColData
,
pAggInfo
->
groupColumnList
,
pBlock
,
0
,
&
pAggInfo
->
hasGroupColData
);
break
;
break
;
}
}
}
}
// not belongs to the same group, return the result of current group
// not belongs to the same group, return the result of current group
setInputDataBlock
(
pOperator
,
pAggInfo
->
binfo
.
pCtx
,
pBlock
,
TSDB_ORDER_ASC
);
setInputDataBlock
(
pOperator
,
pAggInfo
->
binfo
.
pCtx
,
pBlock
,
pQueryAttr
->
order
.
order
);
updateOutputBuf
(
&
pAggInfo
->
binfo
,
&
pAggInfo
->
bufCapacity
,
pBlock
->
info
.
rows
*
pAggInfo
->
resultRowFactor
,
pOperator
->
pRuntimeEnv
,
true
);
updateOutputBuf
(
&
pAggInfo
->
binfo
,
&
pAggInfo
->
bufCapacity
,
pBlock
->
info
.
rows
*
pAggInfo
->
resultRowFactor
,
pOperator
->
pRuntimeEnv
,
true
);
doExecuteFinalMerge
(
pOperator
,
pOperator
->
numOfOutput
,
pBlock
);
doExecuteFinalMerge
(
pOperator
,
pOperator
->
numOfOutput
,
pBlock
);
...
...
src/client/src/tscSQLParser.c
浏览文件 @
f50d7b91
...
@@ -2643,8 +2643,8 @@ static void updateLastScanOrderIfNeeded(SQueryInfo* pQueryInfo) {
...
@@ -2643,8 +2643,8 @@ static void updateLastScanOrderIfNeeded(SQueryInfo* pQueryInfo) {
}
}
pExpr
->
base
.
numOfParams
=
1
;
pExpr
->
base
.
numOfParams
=
1
;
pExpr
->
base
.
param
->
i64
=
TSDB_ORDER_ASC
;
pExpr
->
base
.
param
[
0
].
i64
=
TSDB_ORDER_ASC
;
pExpr
->
base
.
param
->
nType
=
TSDB_DATA_TYPE_INT
;
pExpr
->
base
.
param
[
0
].
nType
=
TSDB_DATA_TYPE_INT
;
}
}
}
}
}
}
...
@@ -6713,8 +6713,6 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
...
@@ -6713,8 +6713,6 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
const
char
*
msg5
=
"only primary timestamp/column in top/bottom function allowed as order column"
;
const
char
*
msg5
=
"only primary timestamp/column in top/bottom function allowed as order column"
;
const
char
*
msg6
=
"only primary timestamp allowed as the second order column"
;
const
char
*
msg6
=
"only primary timestamp allowed as the second order column"
;
const
char
*
msg7
=
"only primary timestamp/column in groupby clause allowed as order column"
;
const
char
*
msg7
=
"only primary timestamp/column in groupby clause allowed as order column"
;
const
char
*
msg8
=
"only column in groupby clause allowed as order column"
;
const
char
*
msg9
=
"orderby column must projected in subquery"
;
const
char
*
msg10
=
"not support distinct mixed with order by"
;
const
char
*
msg10
=
"not support distinct mixed with order by"
;
const
char
*
msg11
=
"not support order with udf"
;
const
char
*
msg11
=
"not support order with udf"
;
const
char
*
msg12
=
"order by tags not supported with diff/derivative/csum/mavg"
;
const
char
*
msg12
=
"order by tags not supported with diff/derivative/csum/mavg"
;
...
@@ -6847,87 +6845,49 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
...
@@ -6847,87 +6845,49 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
return
invalidOperationMsg
(
pMsgBuf
,
msg3
);
return
invalidOperationMsg
(
pMsgBuf
,
msg3
);
}
}
size_t
s
=
taosArrayGetSize
(
pSortOrder
);
if
(
orderByTags
)
{
if
(
s
==
1
)
{
if
(
tscIsDiffDerivLikeQuery
(
pQueryInfo
))
{
if
(
orderByTags
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg12
);
if
(
tscIsDiffDerivLikeQuery
(
pQueryInfo
))
{
}
return
invalidOperationMsg
(
pMsgBuf
,
msg12
);
//pQueryInfo->groupbyExpr.orderIndex = index.columnIndex - tscGetNumOfColumns(pTableMetaInfo->pTableMeta);
}
//pQueryInfo->groupbyExpr.orderIndex = index.columnIndex - tscGetNumOfColumns(pTableMetaInfo->pTableMeta);
CommonItem
*
p1
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pQueryInfo
->
groupbyExpr
.
orderType
=
p1
->
sortOrder
;
}
else
if
(
orderByGroupbyCol
)
{
CommonItem
*
p1
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pQueryInfo
->
groupbyExpr
.
orderType
=
p1
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
if
(
udf
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
else
if
(
isTopBottomUniqueQuery
(
pQueryInfo
))
{
/* order of top/bottom query in interval is not valid */
int32_t
pos
=
tscExprTopBottomIndex
(
pQueryInfo
);
pQueryInfo
->
groupbyExpr
.
orderType
=
pItem
->
sortOrder
;
assert
(
pos
>
0
);
}
else
if
(
orderByGroupbyCol
)
{
SExprInfo
*
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
-
1
);
assert
(
pExpr
->
base
.
functionId
==
TSDB_FUNC_TS
);
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
);
pQueryInfo
->
groupbyExpr
.
orderType
=
pItem
->
sortOrder
;
if
(
udf
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
else
if
(
isTopBottomUniqueQuery
(
pQueryInfo
))
{
/* order of top/bottom query in interval is not valid */
if
(
pExpr
->
base
.
colInfo
.
colIndex
!=
index
.
columnIndex
&&
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
int32_t
pos
=
tscExprTopBottomIndex
(
pQueryInfo
);
return
invalidOperationMsg
(
pMsgBuf
,
msg5
);
assert
(
pos
>
0
);
}
SExprInfo
*
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
-
1
);
assert
(
pExpr
->
base
.
functionId
==
TSDB_FUNC_TS
);
CommonItem
*
p1
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
);
pQueryInfo
->
order
.
order
=
p1
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
return
TSDB_CODE_SUCCESS
;
}
else
{
CommonItem
*
p1
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
if
(
udf
)
{
if
(
pExpr
->
base
.
colInfo
.
colIndex
!=
index
.
columnIndex
&&
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
return
invalidOperationMsg
(
pMsgBuf
,
msg5
);
}
pQueryInfo
->
order
.
order
=
p1
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
PRIMARYKEY_TIMESTAMP_COL_INDEX
;
// orderby ts query on super table
if
(
tscOrderedProjectionQueryOnSTable
(
pQueryInfo
,
0
))
{
bool
found
=
false
;
for
(
int32_t
i
=
0
;
i
<
tscNumOfExprs
(
pQueryInfo
);
++
i
)
{
SExprInfo
*
pExpr
=
tscExprGet
(
pQueryInfo
,
i
);
if
(
pExpr
->
base
.
functionId
==
TSDB_FUNC_PRJ
&&
pExpr
->
base
.
colInfo
.
colId
==
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
found
=
true
;
break
;
}
}
if
(
!
found
&&
pQueryInfo
->
pDownstream
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg9
);
}
addPrimaryTsColIntoResult
(
pQueryInfo
,
pCmd
);
}
}
}
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
return
TSDB_CODE_SUCCESS
;
}
else
{
}
else
{
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
if
(
udf
)
{
if
(
orderByTags
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
//pQueryInfo->groupbyExpr.orderIndex = index.columnIndex - tscGetNumOfColumns(pTableMetaInfo->pTableMeta);
pQueryInfo
->
groupbyExpr
.
orderType
=
pItem
->
sortOrder
;
}
else
if
(
orderByGroupbyCol
){
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
index
.
columnIndex
;
if
(
udf
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
else
{
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
PRIMARYKEY_TIMESTAMP_COL_INDEX
;
if
(
udf
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
}
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
PRIMARYKEY_TIMESTAMP_COL_INDEX
;
// orderby ts query on super table
if
(
tscOrderedProjectionQueryOnSTable
(
pQueryInfo
,
0
))
{
addPrimaryTsColIntoResult
(
pQueryInfo
,
pCmd
);
}
}
if
(
taosArrayGetSize
(
pSortOrder
)
==
2
){
SStrToken
cname
=
{
0
};
SStrToken
cname
=
{
0
};
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
1
);
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
1
);
if
(
pItem
->
isJsonExp
){
if
(
pItem
->
isJsonExp
){
...
@@ -6946,12 +6906,10 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
...
@@ -6946,12 +6906,10 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
if
(
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
if
(
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg6
);
return
invalidOperationMsg
(
pMsgBuf
,
msg6
);
}
else
{
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
PRIMARYKEY_TIMESTAMP_COL_INDEX
;
}
}
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
PRIMARYKEY_TIMESTAMP_COL_INDEX
;
}
}
}
else
if
(
UTIL_TABLE_IS_NORMAL_TABLE
(
pTableMetaInfo
)
||
UTIL_TABLE_IS_CHILD_TABLE
(
pTableMetaInfo
))
{
// check order by clause for normal table & temp table
}
else
if
(
UTIL_TABLE_IS_NORMAL_TABLE
(
pTableMetaInfo
)
||
UTIL_TABLE_IS_CHILD_TABLE
(
pTableMetaInfo
))
{
// check order by clause for normal table & temp table
if
(
getColumnIndexByName
(
&
columnName
,
pQueryInfo
,
&
index
,
pMsgBuf
)
!=
TSDB_CODE_SUCCESS
)
{
if
(
getColumnIndexByName
(
&
columnName
,
pQueryInfo
,
&
index
,
pMsgBuf
)
!=
TSDB_CODE_SUCCESS
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg1
);
return
invalidOperationMsg
(
pMsgBuf
,
msg1
);
...
@@ -6973,48 +6931,26 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
...
@@ -6973,48 +6931,26 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
if
(
udf
)
{
pQueryInfo
->
groupbyExpr
.
orderType
=
pItem
->
sortOrder
;
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
CommonItem
*
p1
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
//pQueryInfo->groupbyExpr.orderIndex = pSchema[index.columnIndex].colId;
pQueryInfo
->
groupbyExpr
.
orderType
=
p1
->
sortOrder
;
}
}
if
(
isTopBottomUniqueQuery
(
pQueryInfo
))
{
if
(
isTopBottomUniqueQuery
(
pQueryInfo
))
{
SArray
*
columnInfo
=
pQueryInfo
->
groupbyExpr
.
columnInfo
;
int32_t
pos
=
tscExprTopBottomIndex
(
pQueryInfo
);
if
(
columnInfo
!=
NULL
&&
taosArrayGetSize
(
columnInfo
)
>
0
)
{
assert
(
pos
>
0
);
SColIndex
*
pColIndex
=
taosArrayGet
(
columnInfo
,
0
);
SExprInfo
*
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
-
1
);
assert
(
pExpr
->
base
.
functionId
==
TSDB_FUNC_TS
);
if
(
pColIndex
->
colIndex
!=
index
.
columnIndex
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg8
);
}
}
else
{
int32_t
pos
=
tscExprTopBottomIndex
(
pQueryInfo
);
assert
(
pos
>
0
);
SExprInfo
*
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
-
1
);
assert
(
pExpr
->
base
.
functionId
==
TSDB_FUNC_TS
);
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
);
pExpr
=
tscExprGet
(
pQueryInfo
,
pos
);
if
(
pExpr
->
base
.
colInfo
.
colIndex
!=
index
.
columnIndex
&&
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
if
(
pExpr
->
base
.
colInfo
.
colIndex
!=
index
.
columnIndex
&&
index
.
columnIndex
!=
PRIMARYKEY_TIMESTAMP_COL_INDEX
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg5
);
return
invalidOperationMsg
(
pMsgBuf
,
msg5
);
}
}
}
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
return
TSDB_CODE_SUCCESS
;
}
}
if
(
udf
)
{
if
(
udf
)
{
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
return
invalidOperationMsg
(
pMsgBuf
,
msg11
);
}
}
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
}
else
{
}
else
{
...
@@ -7051,7 +6987,6 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
...
@@ -7051,7 +6987,6 @@ int32_t validateOrderbyNode(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, SSqlNode* pSq
}
}
}
}
pItem
=
taosArrayGet
(
pSqlNode
->
pSortOrder
,
0
);
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
order
=
pItem
->
sortOrder
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
pQueryInfo
->
order
.
orderColId
=
pSchema
[
index
.
columnIndex
].
colId
;
}
}
...
...
src/query/src/qExecutor.c
浏览文件 @
f50d7b91
...
@@ -283,48 +283,23 @@ static int compareRowData(const void *a, const void *b, const void *userData) {
...
@@ -283,48 +283,23 @@ static int compareRowData(const void *a, const void *b, const void *userData) {
return
(
in1
!=
NULL
&&
in2
!=
NULL
)
?
supporter
->
comFunc
(
in1
,
in2
)
:
0
;
return
(
in1
!=
NULL
&&
in2
!=
NULL
)
?
supporter
->
comFunc
(
in1
,
in2
)
:
0
;
}
}
static
void
sortGroupResByOrderList
(
SGroupResInfo
*
pGroupResInfo
,
SQueryRuntimeEnv
*
pRuntimeEnv
,
SSDataBlock
*
pDataBlock
,
SQLFunctionCtx
*
pCtx
)
{
static
void
sortGroupResByOrderList
(
SGroupResInfo
*
pGroupResInfo
,
SQueryRuntimeEnv
*
pRuntimeEnv
,
SSDataBlock
*
pDataBlock
)
{
int32_t
size
=
pRuntimeEnv
->
pQueryAttr
->
pGroupbyExpr
==
NULL
?
0
:
pRuntimeEnv
->
pQueryAttr
->
pGroupbyExpr
->
numOfGroupCols
;
if
(
pRuntimeEnv
->
pQueryAttr
->
pGroupbyExpr
==
NULL
||
pRuntimeEnv
->
pQueryAttr
->
pGroupbyExpr
->
numOfGroupCols
<=
0
){
if
(
pRuntimeEnv
->
pQueryAttr
->
interval
.
interval
>
0
)
size
++
;
if
(
size
<=
0
)
{
return
;
}
int32_t
orderId
=
pRuntimeEnv
->
pQueryAttr
->
order
.
orderColId
;
if
(
orderId
<=
0
)
{
return
;
}
int32_t
orderIndex
=
-
1
;
for
(
int32_t
j
=
0
;
j
<
pDataBlock
->
info
.
numOfCols
;
++
j
)
{
if
(
pCtx
[
j
].
colId
==
orderId
)
{
orderIndex
=
j
;
break
;
}
}
if
(
orderIndex
<
0
)
{
return
;
return
;
}
}
SColIndex
*
pColIndex
=
taosArrayGet
(
pRuntimeEnv
->
pQueryAttr
->
pGroupbyExpr
->
columnInfo
,
0
);
bool
found
=
false
;
int16_t
dataOffset
=
0
;
int16_t
dataOffset
=
0
;
int16_t
type
=
0
;
for
(
int32_t
j
=
0
;
j
<
pDataBlock
->
info
.
numOfCols
;
++
j
)
{
for
(
int32_t
j
=
0
;
j
<
pDataBlock
->
info
.
numOfCols
;
++
j
)
{
SColumnInfoData
*
pColInfoData
=
(
SColumnInfoData
*
)
taosArrayGet
(
pDataBlock
->
pDataBlock
,
j
);
SColumnInfoData
*
pColInfoData
=
(
SColumnInfoData
*
)
taosArrayGet
(
pDataBlock
->
pDataBlock
,
j
);
if
(
orderIndex
==
j
)
{
if
(
pColInfoData
->
info
.
colId
==
pColIndex
->
colId
)
{
found
=
tru
e
;
type
=
pColInfoData
->
info
.
typ
e
;
break
;
break
;
}
}
dataOffset
+=
pColInfoData
->
info
.
bytes
;
dataOffset
+=
pColInfoData
->
info
.
bytes
;
}
}
if
(
found
==
false
)
{
return
;
}
int16_t
type
=
pRuntimeEnv
->
pQueryAttr
->
pExpr1
[
orderIndex
].
base
.
resType
;
SRowCompSupporter
support
=
{.
pRuntimeEnv
=
pRuntimeEnv
,
.
dataOffset
=
dataOffset
,
.
comFunc
=
getComparFunc
(
type
,
0
)};
SRowCompSupporter
support
=
{.
pRuntimeEnv
=
pRuntimeEnv
,
.
dataOffset
=
dataOffset
,
.
comFunc
=
getComparFunc
(
type
,
0
)};
taosArraySortPWithExt
(
pGroupResInfo
->
pRows
,
compareRowData
,
&
support
);
taosArraySortPWithExt
(
pGroupResInfo
->
pRows
,
compareRowData
,
&
support
);
}
}
...
@@ -7159,7 +7134,7 @@ static SSDataBlock* hashGroupbyAggregate(void* param, bool* newgroup) {
...
@@ -7159,7 +7134,7 @@ static SSDataBlock* hashGroupbyAggregate(void* param, bool* newgroup) {
initGroupResInfo
(
&
pRuntimeEnv
->
groupResInfo
,
&
pInfo
->
binfo
.
resultRowInfo
);
initGroupResInfo
(
&
pRuntimeEnv
->
groupResInfo
,
&
pInfo
->
binfo
.
resultRowInfo
);
if
(
!
pRuntimeEnv
->
pQueryAttr
->
stableQuery
)
{
if
(
!
pRuntimeEnv
->
pQueryAttr
->
stableQuery
)
{
sortGroupResByOrderList
(
&
pRuntimeEnv
->
groupResInfo
,
pRuntimeEnv
,
pInfo
->
binfo
.
pRes
,
pInfo
->
binfo
.
pCtx
);
sortGroupResByOrderList
(
&
pRuntimeEnv
->
groupResInfo
,
pRuntimeEnv
,
pInfo
->
binfo
.
pRes
);
}
}
toSSDataBlock
(
&
pRuntimeEnv
->
groupResInfo
,
pRuntimeEnv
,
pInfo
->
binfo
.
pRes
);
toSSDataBlock
(
&
pRuntimeEnv
->
groupResInfo
,
pRuntimeEnv
,
pInfo
->
binfo
.
pRes
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录