Clears the tile options set on an sfmesh object.
Syntax
sfmesh ST_ClearTileOption(sfmesh sfmesh);Parameters
| Parameter | Description |
|---|---|
schema_name | The sfmesh object. |
Examples
The following example calls ST_ClearTileOption to clear the tile options on the_mesh, then uses ST_HasTileOption to confirm the options were removed. The output f (false) confirms no tile options remain.
SELECT ST_HasTileOption(ST_ClearTileOption(the_mesh))
FROM t_tableOutput:
-------------------
f