Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/tinyAdapter/COOL into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tinyAdapter committed Aug 13, 2024
2 parents edfe393 + 1d45e31 commit 68d3ff3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
import com.nus.cool.core.schema.TableSchema;

Check warning on line 33 in cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java

View workflow job for this annotation

GitHub Actions / code-foramtting-check

[checkstyle] reported by reviewdog 🐶 Wrong lexicographical order for 'com.nus.cool.core.schema.TableSchema' import. Should be before 'org.slf4j.LoggerFactory'. Raw Output: /github/workspace/./cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java:33:1: warning: Wrong lexicographical order for 'com.nus.cool.core.schema.TableSchema' import. Should be before 'org.slf4j.LoggerFactory'. (com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck)
import lombok.Getter;

Check warning on line 34 in cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java

View workflow job for this annotation

GitHub Actions / code-foramtting-check

[checkstyle] reported by reviewdog 🐶 Wrong lexicographical order for 'lombok.Getter' import. Should be before 'org.slf4j.LoggerFactory'. Raw Output: /github/workspace/./cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java:34:1: warning: Wrong lexicographical order for 'lombok.Getter' import. Should be before 'org.slf4j.LoggerFactory'. (com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck)
import lombok.Setter;

Check warning on line 35 in cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java

View workflow job for this annotation

GitHub Actions / code-foramtting-check

[checkstyle] reported by reviewdog 🐶 Wrong lexicographical order for 'lombok.Setter' import. Should be before 'org.slf4j.LoggerFactory'. Raw Output: /github/workspace/./cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java:35:1: warning: Wrong lexicographical order for 'lombok.Setter' import. Should be before 'org.slf4j.LoggerFactory'. (com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck)
import org.slf4j.Logger;

Check warning on line 36 in cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java

View workflow job for this annotation

GitHub Actions / code-foramtting-check

[checkstyle] reported by reviewdog 🐶 Wrong lexicographical order for 'org.slf4j.Logger' import. Should be before 'org.slf4j.LoggerFactory'. Raw Output: /github/workspace/./cool-core/src/main/java/com/nus/cool/core/io/readstore/CubletRS.java:36:1: warning: Wrong lexicographical order for 'org.slf4j.Logger' import. Should be before 'org.slf4j.LoggerFactory'. (com.puppycrawl.tools.checkstyle.checks.imports.CustomImportOrderCheck)
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 68d3ff3

Please sign in to comment.