local_name feeds the hand-built sqlite_autoindex_edges_1 — its backing * column local_name_gen is GENERATED only for IMPORTS edges (#768). */
| 1447 | /* local_name feeds the hand-built sqlite_autoindex_edges_1 — its backing |
| 1448 | * column local_name_gen is GENERATED only for IMPORTS edges (#768). */ |
| 1449 | static char *extract_local_name(const char *props) { |
| 1450 | return extract_prop_string(props, "\"local_name\"", "local_name"); |
| 1451 | } |
| 1452 | |
| 1453 | /* Remap a temp edge ID to its final sequential ID, or 0 if out of range. */ |
| 1454 | static int64_t remap_id(const int64_t *temp_to_final, int64_t max_temp_id, int64_t temp_id) { |
no test coverage detected