Skip to content

Commit

Permalink
minor QoL adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
datomo committed Apr 4, 2024
1 parent f5eb2e2 commit 3b27c04
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.calcite.avatica.util.DateTimeUtils;
import org.apache.calcite.linq4j.Enumerator;
import org.apache.commons.lang3.NotImplementedException;
import org.apache.commons.lang3.time.FastDateFormat;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellType;
Expand Down Expand Up @@ -349,8 +348,7 @@ abstract static class RowConverter {

protected PolyValue convert( ExcelFieldType fieldType, Cell cell ) {
if ( fieldType == null ) {
throw new NotImplementedException();
//return cell;
return PolyString.of( cell.getStringCellValue() );
}
if ( cell == null ) {
return PolyNull.NULL;
Expand Down

0 comments on commit 3b27c04

Please sign in to comment.