i m p l i c i t _ p k Determines if an index is of the form RDB$PRIMARY [ ]
| 201 | // *********************************** |
| 202 | // Determines if an index is of the form RDB$PRIMARY<n[...n]>[<spaces>] |
| 203 | bool implicit_pk(const char* pk_name) |
| 204 | { |
| 205 | return implicit_name(pk_name, IMPLICIT_PK_PREFIX, IMPLICIT_PK_PREFIX_LEN); |
| 206 | } |
| 207 | |
| 208 | |
| 209 | // *********************************** |
nothing calls this directly
no test coverage detected