i m p l i c i t _ d o m a i n Determines if a domain or index is of the form RDB$ [ ] This may be true for implicit domains and for unique and non-unique indices except PKs.
| 181 | // Determines if a domain or index is of the form RDB$<n[...n]>[<spaces>] |
| 182 | // This may be true for implicit domains and for unique and non-unique indices except PKs. |
| 183 | bool implicit_domain(const char* domain_name) |
| 184 | { |
| 185 | return implicit_name(domain_name, IMPLICIT_DOMAIN_PREFIX, IMPLICIT_DOMAIN_PREFIX_LEN); |
| 186 | } |
| 187 | |
| 188 | |
| 189 | // *********************************** |
no test coverage detected