Skip to content

Commit 460e644

Browse files
committed
Fix fillby gen
1 parent 7f1765f commit 460e644

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

engine/table/src/main/java/io/deephaven/engine/table/impl/updateby/fill/BooleanFillByOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void push(int pos, int count) {
4646
Assert.eq(count, "push count", 1);
4747

4848
byte val = booleanValueChunk.get(pos);
49-
if(BooleanUtils.isNull(val)) {
49+
if(!BooleanUtils.isNull(val)) {
5050
curVal = val;
5151
}
5252
}

replication/static/src/main/java/io/deephaven/replicators/ReplicateUpdateBy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ private static void fixupBoolean(String boolResult) throws IOException {
345345
"boolean previousVal", "byte previousVal",
346346
"boolean currentVal", "byte currentVal",
347347
"BooleanChunk", "ByteChunk",
348-
"val != NULL_BOOLEAN", "BooleanUtils.isNull(val)");
348+
"val != NULL_BOOLEAN", "!BooleanUtils.isNull(val)");
349349
lines = replaceRegion(lines, "extra-methods",
350350
Collections.singletonList(
351351
" @Override\n" +

0 commit comments

Comments
 (0)