Skip to content

Commit

Permalink
Include column name for v4 raw fwd index build failure (#14613)
Browse files Browse the repository at this point in the history
  • Loading branch information
itschrispeck authored Dec 6, 2024
1 parent 70c9898 commit dafb4f0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ public void putString(String string) {

@Override
public void putBytes(byte[] bytes) {
Preconditions.checkState(_chunkOffset < (1L << 32), "exceeded 4GB of compressed chunks");
Preconditions.checkState(_chunkOffset < (1L << 32),
"exceeded 4GB of compressed chunks for: " + _dataBuffer.getName());
int sizeRequired = Integer.BYTES + bytes.length;
if (_chunkBuffer.position() > _chunkBuffer.capacity() - sizeRequired) {
flushChunk();
Expand Down

0 comments on commit dafb4f0

Please sign in to comment.