未验证 提交 5fd76a87 编写于 作者: G Ganlin Zhao 提交者: GitHub

Merge pull request #11306 from taosdata/fix/TD-14575

[TD-14575]<fix>: fix rtrim result not correct for nchar columns
......@@ -267,7 +267,7 @@ static void trtrim(char *input, char *output, int32_t type, int32_t charLen) {
numOfSpaces++;
}
} else { //NCHAR
for (int32_t i = charLen - 1; i < charLen; ++i) {
for (int32_t i = charLen - 1; i >= 0; --i) {
if (!iswspace(*((uint32_t *)varDataVal(input) + i))) {
break;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册