Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
package io.trino.operator.aggregation;

import io.trino.operator.aggregation.state.InitialBooleanValue;
import io.trino.spi.function.AccumulatorState;

public interface LongDoubleState
Expand All @@ -23,17 +22,7 @@ public interface LongDoubleState

void setFirst(long first);

@InitialBooleanValue(true)
boolean isFirstNull();

void setFirstNull(boolean firstNull);

double getSecond();

void setSecond(double second);

@InitialBooleanValue(true)
boolean isSecondNull();

void setSecondNull(boolean secondNull);
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
package io.trino.operator.aggregation;

import io.trino.operator.aggregation.state.InitialBooleanValue;
import io.trino.spi.function.AccumulatorState;

public interface LongLongState
Expand All @@ -23,17 +22,7 @@ public interface LongLongState

void setFirst(long first);

@InitialBooleanValue(true)
boolean isFirstNull();

void setFirstNull(boolean firstNull);

long getSecond();

void setSecond(long second);

@InitialBooleanValue(true)
boolean isSecondNull();

void setSecondNull(boolean secondNull);
}
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public void testSplitsForNormalQuery()
assertEquals(statistics.getPhysicalInputRows(), expectedCompletedPositions);
assertEquals(statistics.getProcessedInputBytes(), 0);
assertEquals(statistics.getProcessedInputRows(), expectedCompletedPositions);
assertEquals(statistics.getInternalNetworkBytes(), 381);
assertEquals(statistics.getInternalNetworkBytes(), 261);
assertEquals(statistics.getInternalNetworkRows(), 3);
assertEquals(statistics.getTotalBytes(), 0);
assertEquals(statistics.getOutputBytes(), 9);
Expand Down