aglinxinyuan commented on PR #6224: URL: https://github.com/apache/texera/pull/6224#issuecomment-4909931659
Pushed a fix commit — the group bump broke every Scala build. Dependabot bumped `postgresql` in **both** places it appears, including the jOOQ code-generation driver in `project/plugins.sbt` (past the comment that pins it to 42.7.4). pgjdbc >= 42.7.5 returns JDBC-spec uppercase metadata labels (`KEY_SEQ`) that jOOQ 3.16.23's `PostgresDatabase.loadForeignKeys` can't read, so codegen throws `Field (key_seq) is not contained in Row`, the `ComputingUnitUserAccess` table class is never generated, and every Scala job fails to compile. Same issue as #6179. The fix keeps the two concerns separate: - `project/plugins.sbt` — reverted the codegen driver back to **42.7.4** (build-time only, not bundled; unpinning needs jOOQ 3.20+ per jOOQ/jOOQ#17873). - `amber/build.sbt` — kept the runtime bump to **42.7.13**. - `amber/LICENSE-binary-java` — synced to **42.7.13** so the bundled-jar license check passes (postgresql is a direct amber dep). -- 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]
