提交 49ed4749 编写于 作者: G Ganlin Zhao

[TD-11220]<feature>(query): time related functions

上级 43d10ce2
...@@ -2297,15 +2297,15 @@ void vectorTimeFunc(int16_t functionId, tExprOperandInfo *pInputs, int32_t numIn ...@@ -2297,15 +2297,15 @@ void vectorTimeFunc(int16_t functionId, tExprOperandInfo *pInputs, int32_t numIn
break; break;
} }
case 60000: { /* 1m */ case 60000: { /* 1m */
result = result / 60 * 1000000000; result = result / 1000000000 / 60;
break; break;
} }
case 3600000: { /* 1h */ case 3600000: { /* 1h */
result = result / 3600 * 1000000000; result = result / 1000000000 / 3600;
break; break;
} }
case 86400000: { /* 1d */ case 86400000: { /* 1d */
result = result / 86400 * 1000000000; result = result / 1000000000 / 86400;
break; break;
} }
default: { default: {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册