LuciferYang opened a new pull request, #12584:
URL: https://github.com/apache/gluten/pull/12584
### What changes were proposed in this pull request?
Two hygiene issues in `LICENSE` unrelated to Spark version cleanup:
-
`./backends-clickhouse/src/main/scala/org/apache/spark/sql/execution/SparkWriteFilesCommitProtocol.scala`
was moved to `backends-velox` in an earlier refactor. Update the attribution
path accordingly.
- All 14 `./backends-clickhouse/src-delta-23/...` and
`./backends-clickhouse/src-delta-33/...` entries in the Delta Lake attribution
section use hyphenated directory names (`src-delta-23`, `src-delta-33`), but
the actual on-disk directories are `src-delta23` and `src-delta33` — no hyphen
after "delta". Correct the paths so every entry resolves to a real file.
### How was this patch tested?
- After the change, every `./...` path in `LICENSE` resolves to an existing
file, verified via:
```bash
grep -oE './[^ ]+\.(scala|cpp|yml|java)' LICENSE | while read p; do
[ -f "${p#./}" ] || echo "MISSING: $p"
done
```
Output is empty.
- `LICENSE-binary` was also checked and needs no changes.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude claude-opus-4-7
--
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]