Skip to content

Commit

Permalink
fix fe format
Browse files Browse the repository at this point in the history
  • Loading branch information
jacktengg committed Oct 19, 2023
1 parent 928136c commit ad6dc39
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ private void analyzeScalarType(ScalarType scalarType)
break;
} else {
int precision = scalarType.decimalPrecision();
throw new AnalysisException("Column of type Decimal256 with precision " + precision + " in not supported.");
throw new AnalysisException(
"Column of type Decimal256 with precision " + precision + " in not supported.");
}
}
case TIMEV2:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import org.apache.doris.catalog.FunctionSignature;
import org.apache.doris.nereids.types.DataType;
import org.apache.doris.nereids.types.DecimalV3Type;

import org.apache.doris.qe.ConnectContext;

/** ComputePrecisionForSum */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import org.apache.doris.nereids.types.LargeIntType;
import org.apache.doris.nereids.types.SmallIntType;
import org.apache.doris.nereids.types.TinyIntType;

import org.apache.doris.qe.ConnectContext;

import com.google.common.base.Preconditions;
Expand Down

0 comments on commit ad6dc39

Please sign in to comment.