[ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh

This commit is contained in:
reltuk
2025-10-30 21:51:29 +00:00
parent 8a06a76dbb
commit fa32792591
2 changed files with 5 additions and 4 deletions
+4 -4
View File
@@ -60,8 +60,8 @@ func (bsp *blobstorePersister) Persist(ctx context.Context, mt *memTable, haver
// persist this table in two parts to facilitate later conjoins
records, tail := data[:splitOffset], data[splitOffset:]
recordsName := name+tableRecordsExt
tailName := name+tableTailExt
recordsName := name + tableRecordsExt
tailName := name + tableTailExt
// first write table records and tail (index+footer) as separate blobs
eg, ectx := errgroup.WithContext(ctx)
@@ -249,8 +249,8 @@ func (bsp *blobstorePersister) CopyTableFile(ctx context.Context, r io.Reader, n
indexLen := int64(fileSz - splitOffset)
recordsName := name+tableRecordsExt
tailName := name+tableTailExt
recordsName := name + tableRecordsExt
tailName := name + tableTailExt
// check if we can Put concurrently
rr, ok := r.(io.ReaderAt)
if !ok {
+1
View File
@@ -159,6 +159,7 @@ func TestConjoin(t *testing.T) {
}
type testConjoinMode int
const (
testConjoinModeTableFile testConjoinMode = iota
testConjoinModeArchive