-- (no id or description) create table t1(v1 int); insert into t1 values (0), (1), (2), (3); /* 4 */ -- Test non-verbose explain select * from t1; /* PhysicalScan { table: t1 } */ -- Test verbose explain select * from t1; /* PhysicalScan { table: t1, cost: {compute=0,io=1000}, stat: {row_cnt=1000} } */ -- Test verbose explain with aggregation select count(*) from t1; /* PhysicalAgg ├── aggrs:Agg(Count) │ └── [ 1(u8) ] ├── groups: [] ├── cost: {compute=5000,io=1000} ├── stat: {row_cnt=1000} └── PhysicalScan { table: t1, cost: {compute=0,io=1000}, stat: {row_cnt=1000} } */