@@ -283,7 +283,7 @@ impl SQLiteWriter {
283
283
& file. to_string_lossy ( ) ,
284
284
tag,
285
285
error,
286
- & rmp_serde:: to_vec ( & graph) ?,
286
+ & rmp_serde:: to_vec_named ( & graph) ?,
287
287
) ) ?;
288
288
Ok ( ( ) )
289
289
}
@@ -323,7 +323,7 @@ impl SQLiteWriter {
323
323
let mut stmt =
324
324
conn. prepare_cached ( "INSERT INTO graphs (file, tag, value) VALUES (?, ?, ?)" ) ?;
325
325
let graph = serde:: StackGraph :: from_graph_filter ( graph, & FileFilter ( file) ) ;
326
- stmt. execute ( ( file_str, tag, & rmp_serde:: to_vec ( & graph) ?) ) ?;
326
+ stmt. execute ( ( file_str, tag, & rmp_serde:: to_vec_named ( & graph) ?) ) ?;
327
327
Ok ( ( ) )
328
328
}
329
329
@@ -364,7 +364,7 @@ impl SQLiteWriter {
364
364
) ;
365
365
let symbol_stack = path. symbol_stack_precondition . storage_key ( graph, partials) ;
366
366
let path = serde:: PartialPath :: from_partial_path ( graph, partials, path) ;
367
- root_stmt. execute ( ( file_str, symbol_stack, & rmp_serde:: to_vec ( & path) ?) ) ?;
367
+ root_stmt. execute ( ( file_str, symbol_stack, & rmp_serde:: to_vec_named ( & path) ?) ) ?;
368
368
root_path_count += 1 ;
369
369
} else if start_node. is_in_file ( file) {
370
370
copious_debugging ! (
@@ -375,7 +375,7 @@ impl SQLiteWriter {
375
375
node_stmt. execute ( (
376
376
file_str,
377
377
path. start_node . local_id ,
378
- & rmp_serde:: to_vec ( & path) ?,
378
+ & rmp_serde:: to_vec_named ( & path) ?,
379
379
) ) ?;
380
380
node_path_count += 1 ;
381
381
} else {
0 commit comments