diff options
| author | Chris Lu <chris.lu@gmail.com> | 2025-10-21 11:28:57 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2025-10-21 11:33:26 -0700 |
| commit | 986e3fe12e031417aa177a8afeeaef637bab73d2 (patch) | |
| tree | 9be572bd55d3de4cbf0e75ee5e50ba6d06ddf27f /go.mod | |
| parent | 8c6e1096576aa56eee261fae67ff02a392e833c8 (diff) | |
| download | seaweedfs-986e3fe12e031417aa177a8afeeaef637bab73d2.tar.xz seaweedfs-986e3fe12e031417aa177a8afeeaef637bab73d2.zip | |
Update cockroachdb-parser to fix 32-bit builds
Use seaweedfs/cockroachdb-parser v0.0.0-20251021182748-d0c58c67297e
via replace directive to fix building on 32-bit architectures like OpenBSD ARM.
The replace directive ensures all imports of github.com/cockroachdb/cockroachdb-parser
use the seaweedfs fork which includes fixes for:
- Integer overflow in tsearch evaluation (int -> int64)
- Flag type overflow in lexbase and tree packages (int -> int64)
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -129,7 +129,7 @@ require ( github.com/aws/aws-sdk-go-v2/config v1.31.3 github.com/aws/aws-sdk-go-v2/credentials v1.18.10 github.com/aws/aws-sdk-go-v2/service/s3 v1.88.3 - github.com/cockroachdb/cockroachdb-parser v0.25.3-0.20250917200107-7bd0408a9e14 + github.com/cockroachdb/cockroachdb-parser v0.25.2 github.com/cognusion/imaging v1.0.2 github.com/fluent/fluent-logger-golang v1.10.1 github.com/getsentry/sentry-go v0.35.3 @@ -465,3 +465,5 @@ require ( ) // replace github.com/seaweedfs/raft => /Users/chrislu/go/src/github.com/seaweedfs/raft + +replace github.com/cockroachdb/cockroachdb-parser => github.com/seaweedfs/cockroachdb-parser v0.0.0-20251021182748-d0c58c67297e |
