jayzhan211 commented on issue #5830:
URL: https://github.com/apache/datafusion/issues/5830#issuecomment-5649799385

   pub enum Endpoint {
       Unbounded,
       Open(ScalarValue),    // exclusive
       Closed(ScalarValue),  // inclusive
   }
   
   pub struct Range { lower: Endpoint, upper: Endpoint }
   
   pub struct Domain {
       data_type: DataType,
       ranges: Vec<Range>,  // sorted, disjoint, non-adjacent, all non-empty
       nulls: bool,
   }


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to