Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ private List<Long> bindPartitionIds(OlapTable table, List<String> partitions) {
private List<Column> bindTargetColumns(OlapTable table, List<String> colsName, boolean isNeedSequenceCol) {
// if the table set sequence column in stream load phase, the sequence map column is null, we query it.
return colsName.isEmpty()
? table.getFullSchema().stream()
? table.getBaseSchema(true).stream()
.filter(c -> validColumn(c, isNeedSequenceCol))
.collect(ImmutableList.toImmutableList())
: colsName.stream().map(cn -> {
Expand Down