andygrove opened a new pull request, #4266: URL: https://github.com/apache/datafusion-comet/pull/4266
## Which issue does this PR close? No tracking issue. Quick fix to unblock CI on \`branch-0.16\`. ## Rationale for this change The \`Lint Java\` jobs on \`branch-0.16\` currently fail on every PR. The job runs: \`\`\` npx prettier "**/*.md" --write ./dev/ci/check-working-tree-clean.sh \`\`\` With the prettier version that npm installs today (\`3.8.3\`), the cast tables in \`docs/source/user-guide/latest/compatibility/expressions/cast.md\` are reformatted from compact to padded layout, even inside the \`<!-- prettier-ignore-start -->\` markers. Reproducible on a clean checkout of \`apache/branch-0.16\` with no other changes: \`\`\` $ git clone --branch branch-0.16 https://github.com/apache/datafusion-comet $ npx prettier --check docs/source/user-guide/latest/compatibility/expressions/cast.md [warn] docs/source/user-guide/latest/compatibility/expressions/cast.md [warn] Code style issues found in the above file. \`\`\` This has been blocking #4265 (and will block any future backport PR to \`branch-0.16\`). ## What changes are included in this PR? - Run \`prettier --write\` on \`docs/source/user-guide/latest/compatibility/expressions/cast.md\`. Pure cosmetic reformatting (compact tables to padded tables). No content change. The underlying question of why prettier reformats inside the \`prettier-ignore\` markers can be addressed separately if needed; this PR just unblocks CI. ## How are these changes tested? \`\`\` $ npx prettier --check "docs/**/*.md" All matched files use Prettier code style! \`\`\` -- 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]
