chaoyli edited a comment on issue #2444: RLE decoding error URL: https://github.com/apache/incubator-doris/issues/2444#issuecomment-564980199 The landingpageurl column will use PatchedBase for encoding. The minimum of landingpageurl is -84742859065569280, the positive number is 84742859065569280. It is a 57 bit width integer and used 8 byte to encoding it and encoding as 7 But now will encoding as 8. Because the base value in Patched Base only used three bit to dedicate it. So the binary form will 000 when encoding as 8, 111 when encoding as 7. When decoding, 000 will be handled in error.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
