Skip to content

Commit

Permalink
compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
LakshSingla committed Sep 25, 2023
1 parent 353e406 commit 6d51692
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.apache.druid.java.util.common.guava.Sequences;
import org.apache.druid.query.BySegmentResultValue;
import org.apache.druid.query.CacheStrategy;
import org.apache.druid.query.CloseableCursor;
import org.apache.druid.query.FrameSignaturePair;
import org.apache.druid.query.IterableRowsCursorHelper;
import org.apache.druid.query.Query;
Expand All @@ -59,7 +60,6 @@
import org.apache.druid.query.context.ResponseContext;
import org.apache.druid.query.dimension.DefaultDimensionSpec;
import org.apache.druid.query.dimension.DimensionSpec;
import org.apache.druid.segment.Cursor;
import org.apache.druid.segment.DimensionHandlerUtils;
import org.apache.druid.segment.column.RowSignature;
import org.joda.time.DateTime;
Expand Down Expand Up @@ -558,7 +558,7 @@ public Optional<Sequence<FrameSignaturePair>> resultsAsFrames(
)
{
final RowSignature rowSignature = resultArraySignature(query);
final Cursor cursor = IterableRowsCursorHelper.getCursorFromSequence(
final CloseableCursor cursor = IterableRowsCursorHelper.getCursorFromSequence(
resultsAsArrays(query, resultSequence),
rowSignature
);
Expand Down

0 comments on commit 6d51692

Please sign in to comment.