Rich-T-kid commented on PR #10840: URL: https://github.com/apache/arrow-rs/pull/10840#issuecomment-5427562050
I asked claude to help make diagram of the ree display state after https://github.com/apache/arrow-rs/pull/10840/commits/94fa3fe0928c312cea0fca7c1ef0c39da68192cf ``` ┌───────────────┬─────────────┬─────────────────┬──────────────┬─────────────────────────────────────────────────────────┐ │ run_ends name │ values name │ values nullable │ Display form │ Example │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ default │ default │ nullable │ compact │ RunEndEncoded(Int32, Int32) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ default │ default │ non-null │ compact │ RunEndEncoded(Int32, non-null Utf8) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ default │ custom │ nullable │ verbose │ RunEndEncoded('run_ends': Int32, 'vals': Int32) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ default │ custom │ non-null │ verbose │ RunEndEncoded('run_ends': Int32, 'vals': non-null Utf8) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ custom │ default │ nullable │ verbose │ RunEndEncoded('re': Int32, 'values': Int32) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ custom │ default │ non-null │ verbose │ RunEndEncoded('re': Int32, 'values': non-null Utf8) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ custom │ custom │ nullable │ verbose │ RunEndEncoded('re': Int32, 'vals': Int32) │ ├───────────────┼─────────────┼─────────────────┼──────────────┼─────────────────────────────────────────────────────────┤ │ custom │ custom │ non-null │ verbose │ RunEndEncoded('re': Int32, 'vals': non-null Utf8) │ └───────────────┴─────────────┴─────────────────┴──────────────┴─────────────────────────────────────────────────────────┘ ``` -- 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]
