Skip to main content

Documentation Index

Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

timeSeriesTags Table Function

timeSeriesTags(db_name.time_series_table) - Returns the tags table used by table db_name.time_series_table whose table engine is the TimeSeries engine:
CREATE TABLE db_name.time_series_table ENGINE=TimeSeries TAGS tags_table
The function also works if the tags table is inner:
CREATE TABLE db_name.time_series_table ENGINE=TimeSeries TAGS INNER UUID '01234567-89ab-cdef-0123-456789abcdef'
The following queries are equivalent:
SELECT * FROM timeSeriesTags(db_name.time_series_table);
SELECT * FROM timeSeriesTags('db_name.time_series_table');
SELECT * FROM timeSeriesTags('db_name', 'time_series_table');