Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
30aec155
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
30aec155
编写于
2月 08, 2022
作者:
G
Ganlin Zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-11220]<feature>(query): time related functions
上级
51a2bf24
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
86 addition
and
5 deletion
+86
-5
src/client/src/tscSQLParser.c
src/client/src/tscSQLParser.c
+3
-3
src/common/inc/texpr.h
src/common/inc/texpr.h
+3
-1
src/common/src/texpr.c
src/common/src/texpr.c
+80
-1
未找到文件。
src/client/src/tscSQLParser.c
浏览文件 @
30aec155
...
...
@@ -1853,7 +1853,7 @@ static int32_t handleScalarTypeExpr(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, int32
if
(
tscGetErrorMsgLength
(
pCmd
)
>
0
)
{
return
ret
;
}
return
invalidOperationMsg
(
tscGetErrorMsgPayload
(
pCmd
),
msg2
);
}
...
...
@@ -1864,7 +1864,7 @@ static int32_t handleScalarTypeExpr(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, int32
if
(
TSDB_COL_IS_TAG
(
pIndex
->
flag
))
{
tExprTreeDestroy
(
pNode
,
NULL
);
taosArrayDestroy
(
&
colList
);
return
invalidOperationMsg
(
tscGetErrorMsgPayload
(
pCmd
),
msg3
);
}
}
...
...
@@ -1876,7 +1876,7 @@ static int32_t handleScalarTypeExpr(SSqlCmd* pCmd, SQueryInfo* pQueryInfo, int32
if
(
tscGetErrorMsgLength
(
pCmd
)
>
0
)
{
return
ret
;
}
return
invalidOperationMsg
(
tscGetErrorMsgPayload
(
pCmd
),
msg2
);
}
...
...
src/common/inc/texpr.h
浏览文件 @
30aec155
...
...
@@ -65,7 +65,9 @@ struct SSchema;
#define TSDB_FUNC_SCALAR_CONCAT_WS (TSDB_FUNC_FLAG_SCALAR | 0x000F)
#define TSDB_FUNC_SCALAR_CHAR_LENGTH (TSDB_FUNC_FLAG_SCALAR | 0x0010)
#define TSDB_FUNC_SCALAR_CAST (TSDB_FUNC_FLAG_SCALAR | 0x0011)
#define TSDB_FUNC_SCALAR_MAX_NUM 18
#define TSDB_FUNC_SCALAR_NOW (TSDB_FUNC_FLAG_SCALAR | 0x0012)
#define TSDB_FUNC_SCALAR_TODAY (TSDB_FUNC_FLAG_SCALAR | 0x0013)
#define TSDB_FUNC_SCALAR_MAX_NUM 20
#define TSDB_FUNC_SCALAR_NAME_MAX_LEN 16
...
...
src/common/src/texpr.c
浏览文件 @
30aec155
...
...
@@ -34,6 +34,7 @@ static int32_t exprValidateStringConcatNode(tExprNode *pExpr);
static
int32_t
exprValidateStringConcatWsNode
(
tExprNode
*
pExpr
);
static
int32_t
exprValidateStringLengthNode
(
tExprNode
*
pExpr
);
static
int32_t
exprValidateCastNode
(
char
*
msgbuf
,
tExprNode
*
pExpr
);
static
int32_t
exprValidateTimeNode
(
tExprNode
*
pExpr
);
static
int32_t
exprInvalidOperationMsg
(
char
*
msgbuf
,
const
char
*
msg
)
{
const
char
*
msgFormat
=
"invalid operation: %s"
;
...
...
@@ -47,7 +48,7 @@ static int32_t exprInvalidOperationMsg(char *msgbuf, const char *msg) {
int32_t
exprTreeValidateFunctionNode
(
char
*
msgbuf
,
tExprNode
*
pExpr
)
{
int32_t
code
=
TSDB_CODE_SUCCESS
;
//TODO: check child
s
for every function
//TODO: check child
ren
for every function
switch
(
pExpr
->
_func
.
functionId
)
{
case
TSDB_FUNC_SCALAR_POW
:
case
TSDB_FUNC_SCALAR_LOG
:
...
...
@@ -77,6 +78,10 @@ int32_t exprTreeValidateFunctionNode(char* msgbuf, tExprNode *pExpr) {
case
TSDB_FUNC_SCALAR_CONCAT_WS
:
{
return
exprValidateStringConcatWsNode
(
pExpr
);
}
case
TSDB_FUNC_SCALAR_TODAY
:
case
TSDB_FUNC_SCALAR_NOW
:
{
return
exprValidateTimeNode
(
pExpr
);
}
default:
break
;
...
...
@@ -1157,6 +1162,25 @@ int32_t exprValidateMathNode(tExprNode *pExpr) {
return
TSDB_CODE_SUCCESS
;
}
int32_t
exprValidateTimeNode
(
tExprNode
*
pExpr
)
{
switch
(
pExpr
->
_func
.
functionId
)
{
case
TSDB_FUNC_SCALAR_NOW
:
case
TSDB_FUNC_SCALAR_TODAY
:
{
if
(
pExpr
->
_func
.
numChildren
!=
0
)
{
return
TSDB_CODE_TSC_INVALID_OPERATION
;
}
pExpr
->
resultType
=
TSDB_DATA_TYPE_TIMESTAMP
;
pExpr
->
resultBytes
=
(
int16_t
)
tDataTypes
[
pExpr
->
resultType
].
bytes
;
break
;
}
default:
{
assert
(
false
);
break
;
}
}
return
TSDB_CODE_SUCCESS
;
}
void
vectorConcat
(
int16_t
functionId
,
tExprOperandInfo
*
pInputs
,
int32_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
assert
(
functionId
==
TSDB_FUNC_SCALAR_CONCAT
&&
numInputs
>=
2
&&
order
==
TSDB_ORDER_ASC
);
for
(
int
i
=
0
;
i
<
numInputs
;
++
i
)
{
...
...
@@ -1626,6 +1650,51 @@ void vectorMathFunc(int16_t functionId, tExprOperandInfo *pInputs, int32_t numIn
free
(
inputData
);
}
void
vectorTimeFunc
(
int16_t
functionId
,
tExprOperandInfo
*
pInputs
,
int32_t
numInputs
,
tExprOperandInfo
*
pOutput
,
int32_t
order
)
{
for
(
int
i
=
0
;
i
<
numInputs
;
++
i
)
{
assert
(
pInputs
[
i
].
numOfRows
==
1
||
pInputs
[
i
].
numOfRows
==
pOutput
->
numOfRows
);
}
char
*
outputData
=
NULL
;
char
**
inputData
=
calloc
(
numInputs
,
sizeof
(
char
*
));
for
(
int
i
=
0
;
i
<
pOutput
->
numOfRows
;
++
i
)
{
for
(
int
j
=
0
;
j
<
numInputs
;
++
j
)
{
if
(
pInputs
[
j
].
numOfRows
==
1
)
{
inputData
[
j
]
=
pInputs
[
j
].
data
;
}
else
{
inputData
[
j
]
=
pInputs
[
j
].
data
+
i
*
pInputs
[
j
].
bytes
;
}
}
outputData
=
pOutput
->
data
+
i
*
pOutput
->
bytes
;
bool
hasNullInputs
=
false
;
for
(
int
j
=
0
;
j
<
numInputs
;
++
j
)
{
if
(
isNull
(
inputData
[
j
],
pInputs
[
j
].
type
))
{
hasNullInputs
=
true
;
setNull
(
outputData
,
pOutput
->
type
,
pOutput
->
bytes
);
}
}
if
(
!
hasNullInputs
)
{
switch
(
functionId
)
{
case
TSDB_FUNC_SCALAR_NOW
:
case
TSDB_FUNC_SCALAR_TODAY
:
{
assert
(
numInputs
==
0
);
double
result
=
345
;
SET_TYPED_DATA
(
outputData
,
pOutput
->
type
,
result
);
break
;
}
default:
{
assert
(
false
);
break
;
}
}
// end switch function(id)
}
// end can produce value, all child has value
}
// end for each row
free
(
inputData
);
}
_expr_scalar_function_t
getExprScalarFunction
(
uint16_t
funcId
)
{
assert
(
TSDB_FUNC_IS_SCALAR
(
funcId
));
int16_t
scalaIdx
=
TSDB_FUNC_SCALAR_INDEX
(
funcId
);
...
...
@@ -1724,4 +1793,14 @@ tScalarFunctionInfo aScalarFunctions[] = {
"cast"
,
vectorMathFunc
},
{
TSDB_FUNC_SCALAR_NOW
,
"now"
,
vectorTimeFunc
},
{
TSDB_FUNC_SCALAR_TODAY
,
"today"
,
vectorTimeFunc
},
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录