This topic describes the ST_CreateChunkTable function. This function is used to create a database chunk table.

Syntax

boolean ST_CreateChunkTable(cstring tableName)

Parameters

Parameter Description
tableName The name of the database chunk table. The name must meet the following requirements:
  • The name must start with a letter and end with a letter or digit.
  • The name can contain lowercase letters, digits, and underscores (_).
  • The name must be 2 to 64 characters in length.
  • The name must be unique in the current database.

Examples:

SELECT ST_CreateChunkTable('t_chunk');
__________________________________
t