Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix](LZ4 compression) Fix wrong LZ4 compression max input size limit (…
…#41239) ## Proposed changes LZ4 compression max supported value is LZ4_MAX_INPUT_SIZE, which is 0x7E000000(2,113,929,216 bytes). Doris use wrong max size INT_MAX, which is 2,147,483,647, to check. If input data size is between this two size, then it can pass the check but LZ4 compression will fail. This PR fix it. <!--Describe your changes.-->
- Loading branch information