@@ -24,7 +24,7 @@ use databend_common_exception::Result;
2424use databend_common_expression:: types:: NumberDataType ;
2525use databend_common_expression:: types:: StringType ;
2626use databend_common_expression:: types:: TimestampType ;
27- use databend_common_expression:: types:: UInt32Type ;
27+ use databend_common_expression:: types:: UInt64Type ;
2828use databend_common_expression:: ColumnBuilder ;
2929use databend_common_expression:: DataBlock ;
3030use databend_common_expression:: FromData ;
@@ -183,17 +183,17 @@ impl QueryExecutionTable {
183183 nodes. push ( local_id. clone ( ) ) ;
184184 timestamps. push ( timestamp as i64 * 1_000_000 ) ;
185185 query_ids. push ( query_id. clone ( ) ) ;
186- process_rows. push ( rows_for_timestamp. get ( query_id) . copied ( ) . unwrap_or ( 0 ) ) ;
187- process_times. push ( times_for_timestamp. get ( query_id) . copied ( ) . unwrap_or ( 0 ) ) ;
186+ process_rows. push ( rows_for_timestamp. get ( query_id) . copied ( ) . unwrap_or ( 0 ) as u64 ) ;
187+ process_times. push ( times_for_timestamp. get ( query_id) . copied ( ) . unwrap_or ( 0 ) as u64 ) ;
188188 }
189189 }
190190
191191 Ok ( vec ! [
192192 StringType :: from_data( nodes) ,
193193 TimestampType :: from_data( timestamps) ,
194194 StringType :: from_data( query_ids) ,
195- UInt32Type :: from_data( process_rows) ,
196- UInt32Type :: from_data( process_times) ,
195+ UInt64Type :: from_data( process_rows) ,
196+ UInt64Type :: from_data( process_times) ,
197197 ] )
198198 }
199199}
0 commit comments