dongjoon-hyun opened a new pull request, #56817: URL: https://github.com/apache/spark/pull/56817
### What changes were proposed in this pull request? `LowLatencyMemoryStream.scala` lives in the `.../streaming/sources/` directory but declared `package ...streaming`. This PR changes its package to `...streaming.sources` to match the directory, adds the now-needed `import ...streaming.Offset` to the file, and updates the five callers to import `LowLatencyMemoryStream` from the new package. ### Why are the changes needed? The package no longer matched its directory, making it the only outlier in that directory and inconsistent with Spark's package-per-directory convention. ### Does this PR introduce _any_ user-facing change? No. `LowLatencyMemoryStream` is a test-only utility. ### How was this patch tested? `build/sbt 'sql/Test/compile'` and `build/sbt 'sql-kafka-0-10/Test/compile'` both pass. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Opus 4.8 -- 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]
