You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tdigest): correct TDIGEST.MERGE parser for COMPRESSION parameter (#3447)
The parser incorrectly used two independent `if` statements to check
COMPRESSION and OVERRIDE parameters. When COMPRESSION was successfully
parsed, the code continued to the second `if` which would fail since
the parser had reached the end, causing "ERR wrong keyword" error.
Fixed by changing the second `if` to `else if` to form a proper
if-else-if-else chain.
Signed-off-by: reilly <reilly@example.com>
0 commit comments