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
| Parameter | Description |
|---|---|
| sfmeshObject | The sfmesh object. |
| material | The material object. |
Examples
SELECT ST_HasBinData(ST_SetBinData(the_mesh, 'abc'::bytea))
FROM t_table;
-------------------
t