This topic describes the ST_HasBinData function. This function determines whether user-defined binary data is returned.

Syntax

boolean ST_HasBinData(sfmesh sfmeshObject);
boolean ST_HasBinData(material material);

Parameters

ParameterDescription
sfmeshObjectThe sfmesh object.
materialThe material object.

Examples

SELECT ST_HasBinData(ST_SetBinData(the_mesh, 'abc'::bytea))
FROM t_table;

-------------------
t