Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in https://github.com/taosdata/TDengine/blob/develop/src/query/src/qAggMain.c, Passing argument pList of type tValuePair ** and argument 8 /* sizeof (tValuePair **) */ to function taosheapsort is suspicious. In this case, sizeof (tValuePair **) is equal to sizeof (tValuePair *).
You can use sizeof (tValuePair *) instead of sizeof (tValuePair **).
The text was updated successfully, but these errors were encountered:
pick up challenge
Sorry, something went wrong.
Assigned it to you.
lihongxing6
No branches or pull requests
in https://github.com/taosdata/TDengine/blob/develop/src/query/src/qAggMain.c, Passing argument pList of type tValuePair ** and argument 8 /* sizeof (tValuePair **) */ to function taosheapsort is suspicious. In this case, sizeof (tValuePair **) is equal to sizeof (tValuePair *).
You can use sizeof (tValuePair *) instead of sizeof (tValuePair **).
The text was updated successfully, but these errors were encountered: