Skip to content

Commit

Permalink
stores: fix TestPartialSlab
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Aug 5, 2024
1 parent 573a25b commit b4b1f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stores/sql/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2698,7 +2698,7 @@ func MarkPackedSlabUploaded(ctx context.Context, tx Tx, slab api.UploadedPackedS
if err := tx.QueryRow(ctx, `
SELECT sla.id, bs.id, bs.filename
FROM slabs sla
INNER JOIN buffered_slabs bs ON buffered_slabs.id = sla.db_buffered_slab_id
INNER JOIN buffered_slabs bs ON bs.id = sla.db_buffered_slab_id
WHERE sla.db_buffered_slab_id = ?
`, slab.BufferID).
Scan(&slabID, &bufferedSlabID, &bufferFileName); err != nil {
Expand Down

0 comments on commit b4b1f4c

Please sign in to comment.