Skip to content

Commit

Permalink
Rename SmallintPositionsAppender to ShortPositionsAppender
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-stec authored and sopel39 committed May 26, 2022
1 parent 83cdee3 commit b056e2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private Class<? extends PositionsAppender> findDedicatedAppenderClassFor(Type ty
case Byte.BYTES:
return BytePositionsAppender.class;
case Short.BYTES:
return SmallintPositionsAppender.class;
return ShortPositionsAppender.class;
case Integer.BYTES:
return IntPositionsAppender.class;
case Long.BYTES:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import io.trino.spi.block.BlockBuilder;
import it.unimi.dsi.fastutil.ints.IntArrayList;

public class SmallintPositionsAppender
public class ShortPositionsAppender
implements PositionsAppender
{
@Override
Expand Down

0 comments on commit b056e2f

Please sign in to comment.