AndreaBozzo opened a new pull request, #1943:
URL: https://github.com/apache/iceberg-rust/pull/1943

   ## Which issue does this PR close?
   
   Closes #1780
   
   ## What changes are included in this PR?
   
   This PR adds support for configuring the catalog type dynamically in 
sqllogictest schedule files.
   
   ### Changes:
   - Add `[catalog]` section parsing in schedule files with `type` and 
`properties` fields
   - Support `memory` catalog (default) and all catalog types from 
`iceberg-catalog-loader` (rest, glue, hms, sql, s3tables)
   - Update `DataFusionEngine` to accept a shared catalog instance from the 
schedule configuration
   - Add `iceberg-catalog-loader` dependency to the workspace
   
   ### Example configuration:
   
   ```toml
   [catalog]
   type = "rest"
   
   [catalog.properties]
   uri = "http://localhost:8181";
   warehouse = "s3://my-bucket"
   
   [engines]
   df = { type = "datafusion" }
   
   [[steps]]
   engine = "df"
   slt = "test.slt"
   ```
   
   If no `[catalog]` section is specified, defaults to memory catalog for 
backward compatibility.
   
   ## Are these changes tested?
   
   Yes, unit tests added for:
   - Catalog configuration parsing (default, explicit memory, with properties)
   - Catalog creation for memory type
   - Engine loading with catalog parameter


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