[fix](Nereids) scan should output all invisiable column (#23003)

This commit is contained in:
morrySnow
2023-08-16 18:07:59 +08:00
committed by GitHub
parent b815cf327a
commit 0594acfcf1
3 changed files with 3 additions and 13 deletions

View File

@ -93,7 +93,7 @@ class BindRelationTest extends TestWithFeService implements GeneratedPlanPattern
OlapTable externalOlapTable = new OlapTable(1, tableName, externalTableColumns, KeysType.DUP_KEYS,
new PartitionInfo(), new RandomDistributionInfo(10)) {
@Override
public List<Column> getBaseSchema() {
public List<Column> getBaseSchema(boolean full) {
return externalTableColumns;
}

View File

@ -106,7 +106,7 @@ class PruneOlapScanTabletTest implements MemoPatternMatchSupported {
olapTable.getPartitionIds();
result = ImmutableList.of(1L);
olapTable.getBaseSchema();
olapTable.getBaseSchema(true);
result = columns;
olapTable.getName();