update aggregate bin for the updated peering_degree datatype

This commit is contained in:
Youngjoon Lee 2024-09-13 08:35:36 +09:00
parent daf637d2e6
commit 167d6cd612
No known key found for this signature in database
GPG Key ID: 167546E2D1712F8C

View File

@ -13,7 +13,7 @@ fn aggregate(path: &str) {
schema.with_column("num_mixes".into(), DataType::Int64);
schema.with_column("num_paths".into(), DataType::Int64);
schema.with_column("random_topology".into(), DataType::Boolean);
schema.with_column("peering_degree".into(), DataType::Int64);
schema.with_column("peering_degree".into(), DataType::String);
schema.with_column("min_queue_size".into(), DataType::Int64);
schema.with_column("transmission_rate".into(), DataType::Int64);
schema.with_column("num_senders".into(), DataType::Int64);