gene-bordegaray commented on code in PR #22607:
URL: https://github.com/apache/datafusion/pull/22607#discussion_r3323698361


##########
datafusion/sqllogictest/src/test_context.rs:
##########
@@ -286,6 +303,212 @@ fn register_strict_schema_provider(ctx: &SessionContext) {
     );
 }
 
+// 
==============================================================================
+// Range Partitioned Table (sqllogictest-only)
+// 
==============================================================================
+
+#[derive(Debug)]
+struct RangePartitionedTable {
+    schema: SchemaRef,
+    partitions: Vec<Vec<RecordBatch>>,
+    range_column_index: usize,

Review Comment:
   I think I am going to repeat this a lot in these comments but my gial was / 
is to make the simplest possible test and fixture for the first planning / 
optimizer changes and can update the fixture as needed when we cross the road 
to writing more of those complex cases.
   
   Maybe it is preferred to do this upfront but that was the idea.



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