local_name feeds the hand-built sqlite_autoindex_edges_1 — its backing * column local_name_gen is GENERATED only for IMPORTS edges (#768). */
| 1397 | /* local_name feeds the hand-built sqlite_autoindex_edges_1 — its backing |
| 1398 | * column local_name_gen is GENERATED only for IMPORTS edges (#768). */ |
| 1399 | static char *extract_local_name(const char *props) { |
| 1400 | return extract_prop_string(props, "\"local_name\"", "local_name"); |
| 1401 | } |
| 1402 | |
| 1403 | /* Remap a temp edge ID to its final sequential ID, or 0 if out of range. */ |
| 1404 | static int64_t remap_id(const int64_t *temp_to_final, int64_t max_temp_id, int64_t temp_id) { |
no test coverage detected