Skip to content

Commit ca806a9

Browse files
authored
chore: rename ser_time to serialization_time in ScalarIndexQuery display (#6682)
Prior to this commit you would end up with nodes like this in the analyze plan output: ScalarIndexQuery: elapsed=12.53166489s, query=[..., search_time=8.00s, ser_time=116.86µs] EmptyExec, metrics=[] This commit changes "ser_time" to "serialization_time". This makes the name more clear to readers unfamiliar with the codebase/rust convention of "serde".
1 parent 2d27f2e commit ca806a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rust/lance-datafusion/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ pub const DELTAS_SEARCHED_METRIC: &str = "deltas_searched";
252252
pub const PARTITIONS_SEARCHED_METRIC: &str = "partitions_searched";
253253
pub const FIND_PARTITIONS_ELAPSED_METRIC: &str = "find_partitions_elapsed";
254254
pub const SCALAR_INDEX_SEARCH_TIME_METRIC: &str = "search_time";
255-
pub const SCALAR_INDEX_SER_TIME_METRIC: &str = "ser_time";
255+
pub const SCALAR_INDEX_SER_TIME_METRIC: &str = "serialization_time";

0 commit comments

Comments
 (0)