Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hugy718 committed Aug 7, 2024
1 parent 10c2542 commit 8ea0142
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@

import static com.google.common.base.Preconditions.checkNotNull;

import java.nio.ByteBuffer;
import java.util.BitSet;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.collect.Lists;
import com.google.common.primitives.Ints;
import com.nus.cool.core.io.Input;
import com.nus.cool.core.io.compression.SimpleBitSetCompressor;
import com.nus.cool.core.schema.TableSchema;
import java.nio.ByteBuffer;
import java.util.BitSet;
import java.util.List;
import lombok.Getter;
import lombok.Setter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Read cublet store
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ public boolean add(FieldValue[] tuple) throws IOException {
if (maybeSwitchChunk(curUser)) {
if (maybeSwitchCublet()) {
// create a new data chunk with offset 0
this.dataChunk = DataChunkWS.newDataChunk(this.tableSchema, this.metaChunk.getMetaFields(), 0);
this.dataChunk = DataChunkWS.newDataChunk(
this.tableSchema, this.metaChunk.getMetaFields(), 0);
}
}
lastUser = curUser;
Expand Down

0 comments on commit 8ea0142

Please sign in to comment.