Merge branch 'fix/TD-28164-3.0' of github.com:/taosdata/TDengine into fix/TD-28164-3.0

This commit is contained in:
Alex Duan 2024-01-07 15:13:29 +08:00
commit 40e8c2da95
1 changed files with 2 additions and 2 deletions

View File

@ -206,8 +206,8 @@ char * strendG(const char* pstr) {
return NULL;
}
char * p = (char *)pstr + len - 2;
if (strcmp(p, "\\G") == 0) {
char * p = (char *)pstr + len - 3;
if (strcmp(p, "\\G;") == 0 ){
return p;
}