i m p l i c i t _ i n t e g r i t y Determines if a table integrity constraint domain is of the form INTEG_ [ ]
| 191 | // *********************************** |
| 192 | // Determines if a table integrity constraint domain is of the form INTEG_<n[...n]>[<spaces>] |
| 193 | bool implicit_integrity(const char* integ_name) |
| 194 | { |
| 195 | return implicit_name(integ_name, IMPLICIT_INTEGRITY_PREFIX, IMPLICIT_INTEGRITY_PREFIX_LEN); |
| 196 | } |
| 197 | |
| 198 | |
| 199 | // *********************************** |
nothing calls this directly
no test coverage detected