baibaichen opened a new pull request, #11594: URL: https://github.com/apache/incubator-gluten/pull/11594
## What changes are proposed in this pull request? Replace deprecated Delta Lake APIs with their recommended alternatives in velox backend test code (`src-delta33`): - `deltaLog.snapshot` → `deltaLog.unsafeVolatileSnapshot` - `log.startTransaction()` → `log.startTransaction(catalogTableOpt = None)` These APIs were deprecated in Delta Lake 3.3: - `snapshot`: deprecated since 12.0, use `unsafeVolatileSnapshot` - `startTransaction()`: deprecated since 3.0, use `CatalogTable` overload **Files changed:** - `DeletionVectorsTestUtils.scala` — 2 `startTransaction()` calls - `DeltaSuite.scala` — 9 `snapshot` references - `OptimizeMetadataOnlyDeltaQuerySuite.scala` — 1 `startTransaction()` call ## How was this patch tested? These are simple API renames with identical semantics. The deprecated APIs are direct wrappers around the new ones. No behavioral change expected. ## Was this patch authored or co-authored using generative AI tooling? Generated-by: GitHub Copilot (Claude) -- 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]
