function cdb_schemaless(pTable)
Updated 11/22/19
Summary
This function returns true or false depending on if the specific table is schemaless or not.
Inputs
- pTable (String) - The specified table ID or table name.
Outputs
(Boolean) - If the table passed is schemaless, true is returned. Otherwise, false is returned.
Additional Requirements
- This API call requires internet access.
- This API requires Developer Auth. See Accounts and Authorization for more details.
Examples
local tTable
put "clients" into tTable
put cdb_schemaless(tTable)
# Output: false