JingsongLi opened a new pull request, #730:
URL: https://github.com/apache/paimon-rust/pull/730

   ## Summary
   
   - serialize unbounded `VarCharType` with Java's `STRING` alias
   - preserve `STRING NOT NULL` and bounded `VARCHAR(n)` behavior
   - add regression coverage for all three serialization forms
   
   ## Root cause
   
   `VarCharType` uses display-based Serde serialization, but its `Display` 
implementation always emitted `VARCHAR(length)`. As a result, the maximum 
length used to represent `STRING` was persisted as `VARCHAR(2147483647)` 
instead of Java's canonical `STRING` form.
   
   ## Validation
   
   - `cargo fmt --all -- --check`
   - `cargo test -p paimon --lib` (`2317 passed`, `2 ignored`)
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to