Checks whether an sfmesh object has custom tile options.
Syntax
boolean ST_HasTileOption(sfmesh sfmesh);Parameters
| Parameter | Description |
|---|---|
sfmesh | The sfmesh object to check. |
Description
ST_HasTileOption returns a Boolean indicating whether the given sfmesh object has custom tile options set. Before calling this function, set the tile options on the sfmesh object by calling ST_SetTileOption.
Return values:
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