This commit is contained in:
lvhui
2022-11-30 13:04:48 +08:00
parent 30789747e4
commit 06fbd47c74
2 changed files with 4 additions and 4 deletions

View File

@ -5659,8 +5659,8 @@ static VariableShowStmt* _copyVariableShowStmt(const VariableShowStmt* from)
COPY_STRING_FIELD(name);
COPY_STRING_FIELD(likename);
COPY_STRING_FIELD(offset);
COPY_STRING_FIELD(count);
COPY_SCALAR_FIELD(offset);
COPY_SCALAR_FIELD(count);
return newnode;
}

View File

@ -1831,8 +1831,8 @@ static bool _equalVariableShowStmt(const VariableShowStmt* a, const VariableShow
{
COMPARE_STRING_FIELD(name);
COMPARE_STRING_FIELD(likename);
COMPARE_STRING_FIELD(offset);
COMPARE_STRING_FIELD(count);
COMPARE_SCALAR_FIELD(offset);
COMPARE_SCALAR_FIELD(count);
return true;
}