Checks whether an sfmesh object has custom tile options.
Syntax
boolean ST_HasTileOption(sfmesh sfmesh);Parameters
| Parameter | Description |
|---|---|
sfmesh | The sfmesh object. |
Description
Returns a Boolean value indicating whether the specified sfmesh object has custom tile options set via ST_SetTileOption.
t: The sfmesh object has custom tile options.f: The sfmesh object does not have custom tile options.
Examples
SELECT ST_HasTileOption(the_mesh)
FROM t_table;
-------------------
t