mwish
mwish
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/kvrocks/issues) and found no similar issues. ### Motivation Sanitizer is widely used in systems. Currently kvrocks has ASAN and...
### Rationale for this change Moving EncodedStats because it holds two std::string. This could benifit for non-SSO optimized data for FLBA/String statistics ( It seems to be useless for SSO...
### Rationale for this change ### What changes are included in this PR? ### Are these changes tested? ### Are there any user-facing changes? * GitHub Issue: #41687
### Rationale for this change In https://github.com/apache/arrow/issues/41321 , user reports a corrupt when reading from a corrupt parquet file. This is because we lost some checking. Current code works on...
### Describe the enhancement requested Moving `EncodedStats` because it holds two `std::string`. This could benifit for non-SSO optimized data for FLBA/String statistics ( It seems to be useless for SSO...
### Describe the bug, including details regarding any error messages, version, and platform. See: https://github.com/apache/arrow/pull/41346#issuecomment-2117760575 and https://github.com/ursacomputing/crossbow/actions/runs/9130013334/job/25105889506 ``` 66/94 Test #69: arrow-dataset-file-parquet-encryption-test ...***Failed 0.34 sec Running arrow-dataset-file-parquet-encryption-test, redirecting output into...
### Rationale for this change Thrift deserializer calls many virtual functions. This generate a template method for it. ### What changes are included in this PR? 1. `cpp/build-support/update-thrift.sh`: add `templates`...
### Describe the enhancement requested thrift cpp idl enable generate template for thrift `proto`. Pro: This avoid lots of virtual function calls during deserializing. Cons: more generated methods ### Component(s)...
### Describe the enhancement requested I see the pr removed the `kBitMask` in arrow-rs[1]. Besides, abseil mentions that this optimization is useless in Haswell machine [2][3], and this might also...
### Rationale for this change Currently we allow reading bloom filter for specific column and rowgroup, now this patch allow it writing BF. This patch is just a skeleton. If...