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

Function INTL_data

src/jrd/intl.cpp:904–929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

902
903
904bool INTL_data(const dsc* pText)
905{
906/**************************************
907 *
908 * I N T L _ d a t a
909 *
910 **************************************
911 *
912 * Functional description
913 * Given an input text descriptor,
914 * return true if the data pointed to represents
915 * international text (subject to user defined or non-binary
916 * collation or comparison).
917 *
918 **************************************/
919
920 fb_assert(pText != NULL);
921
922 if (!IS_TEXT(pText))
923 return false;
924
925 if (!INTERNAL_TTYPE(pText))
926 return true;
927
928 return false;
929}
930
931bool INTL_data_or_binary(const dsc* pText)
932{

Callers 1

INTL_data_or_binaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected