Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need to upgrade iceberg version when it cannot work with current Nessie ?
Doesn't it make sense to upgrade once iceberg side PR is merged ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we have a circular dependency in the project with Nessie+Iceberg. The SQL extensions depend on
iceberg.version, which uses a Nessie version older than the current one, so this is independent from the PR you mentionedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok. got it.
Now for this
iceberg.versionto work we are keepingnessie-client@ 0.9.2 in our pom even though we are in 0.12.1 version.@rymurr , @snazy , @nastra : Should we move this
ITNessieStatementsto Nessie module in iceberg code ? so that Nessie code will be clean and always points to latest version for client as-well ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ajantha-bhat
client.nessie.versionpoints to 0.9.2 because that's the version that is being used by iceberg 0.12.1 currently. Also we can't moveITNessieStatementsto Iceberg because the SQL extensions are part of the Nessie codebase, so the test should also be in the Nessie codebase