[fix](Nereids) scan should output all invisiable column (#23003)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -106,7 +106,7 @@ class PruneOlapScanTabletTest implements MemoPatternMatchSupported {
|
||||
olapTable.getPartitionIds();
|
||||
result = ImmutableList.of(1L);
|
||||
|
||||
olapTable.getBaseSchema();
|
||||
olapTable.getBaseSchema(true);
|
||||
result = columns;
|
||||
|
||||
olapTable.getName();
|
||||
|
||||
Reference in New Issue
Block a user