[fix](meta_scanner) fix meta_scanner process ColumnNullable (#28711)

This commit is contained in:
zhiqiang
2023-12-20 17:41:38 +08:00
committed by GitHub
parent 2683b1e8c3
commit 2b2d3d0eb1
4 changed files with 24 additions and 14 deletions

View File

@ -37,11 +37,11 @@ public class QueriesTableValuedFunction extends MetadataTableValuedFunction {
private static final ImmutableList<Column> SCHEMA = ImmutableList.of(
new Column("QueryId", ScalarType.createStringType()),
new Column("StartTime", PrimitiveType.BIGINT),
new Column("EndTime", PrimitiveType.BIGINT, true),
new Column("EventTime", PrimitiveType.BIGINT, true),
new Column("EndTime", PrimitiveType.BIGINT),
new Column("EventTime", PrimitiveType.BIGINT),
new Column("Latency", PrimitiveType.BIGINT),
new Column("State", ScalarType.createStringType()),
new Column("Database", ScalarType.createStringType(), true),
new Column("Database", ScalarType.createStringType()),
new Column("Sql", ScalarType.createStringType()),
new Column("FrontendInstance", ScalarType.createStringType()));