Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhan1 committed Sep 3, 2024
1 parent 2ca8923 commit afa077a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ public TOlapTableSchemaParam createSchema(long dbId, OlapTable table, Analyzer a
schemaParam.setAutoIncrementColumnUniqueId(col.getUniqueId());
}
}
if (table.getSequenceMapCol() != null) {
if (table.getSequenceMapCol() != null && !partialUpdateInputColumns.contains(table.getSequenceMapCol())) {
Column seqMapCol = table.getFullSchema().stream()
.filter(col -> col.getName().equalsIgnoreCase(table.getSequenceMapCol()))
.findFirst().get();
Expand Down

0 comments on commit afa077a

Please sign in to comment.