ST_HasTileOption

更新时间:
复制 MD 格式

Checks whether an sfmesh object has custom tile options.

Syntax

boolean ST_HasTileOption(sfmesh sfmesh);

Parameters

ParameterDescription
sfmeshThe 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