未验证 提交 344ac753 编写于 作者: M Minglei Jin 提交者: GitHub

Merge pull request #12340 from taosdata/fix/TS-1480-V24

fix(common): reverseCopy not support timestamp datatype
......@@ -367,7 +367,8 @@ static void reverseCopy(char* dest, const char* src, int16_t type, int32_t numOf
return;
}
case TSDB_DATA_TYPE_BIGINT:
case TSDB_DATA_TYPE_UBIGINT: {
case TSDB_DATA_TYPE_UBIGINT:
case TSDB_DATA_TYPE_TIMESTAMP: {
int64_t* p = (int64_t*) dest;
int64_t* pSrc = (int64_t*) src;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册