Bump spirit to v0.12.1 and Go toolchain to 1.26.1 - #6
Merged
Conversation
morgo
force-pushed
the
bump-spirit-latest
branch
from
April 15, 2026 03:19
3c283a5 to
40367ff
Compare
Bump dependencies: - github.com/block/spirit v0.10.1 → v0.12.1-0.20260414195601-d7c75c14cdfa - Go toolchain 1.25.3/1.25.6 → 1.26.1 - golangci-lint 2.8.0 → 2.11.4 (built with Go 1.26.1) - Dockerfile golang:1.25 → golang:1.26 Spirit API changes: - TableInfo.QuotedName (backtick-quoted `schema`.`table`) was replaced by QuotedTableName (backtick-quoted `table` only, without schema). Update all references in pkg/stage/stager.go and pkg/archive/buffer_stager.go. - Because QuotedTableName no longer includes the schema prefix, internal spirit operations like ANALYZE TABLE now run against the connection's default database. Remove the unnecessary SetInfo() calls from pkg/audit/db.go where the audit schema differs from the connection's default database. The SetInfo() results were never used — the TableInfo was discarded immediately after creation.
morgo
force-pushed
the
bump-spirit-latest
branch
from
April 15, 2026 03:27
40367ff to
be7280b
Compare
aparajon
approved these changes
Apr 15, 2026
morgo
marked this pull request as ready for review
April 15, 2026 04:07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Bump dependencies:
github.com/block/spiritv0.10.1 → v0.12.1-0.20260414195601-d7c75c14cdfaChanges
Spirit renamed
TableInfo.QuotedName(field containing backtick-quoted `schema`.`table`) toQuotedTableName(backtick-quoted `table` only, without schema prefix). Updated all references in:pkg/stage/stager.go(7 occurrences)pkg/archive/buffer_stager.go(2 occurrences)This is needed as a transitive dependency for other changes internally.