MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / implicit_domain

Function implicit_domain

src/common/utils.cpp:183–186  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

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.
183bool implicit_domain(const char* domain_name)
184{
185 return implicit_name(domain_name, IMPLICIT_DOMAIN_PREFIX, IMPLICIT_DOMAIN_PREFIX_LEN);
186}
187
188
189// ***********************************

Callers 4

operator ==Method · 0.85
VIO_eraseFunction · 0.85
setupDescMethod · 0.85
InitParameterNodeMethod · 0.85

Calls 1

implicit_nameFunction · 0.85

Tested by

no test coverage detected