Describe the bug
Query to list data nodes is incorrect at multiple places at https://docs.timescale.com/v2.0/tutorials/clustering. Instead of SELECT * FROM timescaledb_information.data_node;
it should be -
SELECT * FROM timescaledb_information.data_nodes;
Expected behavior
List of data nodes should be printed.
Actual behavior
It prints the following error:
ERROR: relation "timescaledb_information.data_node" does not exist
LINE 1: SELECT * FROM timescaledb_information.data_node
^
SQL state: 42P01
Character: 15
Relevant system information:
Describe the bug Query to list data nodes is incorrect at multiple places at https://docs.timescale.com/v2.0/tutorials/clustering. Instead of
SELECT * FROM timescaledb_information.data_node;
it should be -SELECT * FROM timescaledb_information.data_nodes;
To Reproduce Steps to reproduce the behavior: On the postgres console, execute the query to list data nodes as mentioned in the doc at https://docs.timescale.com/v2.0/tutorials/clustering.
Expected behavior List of data nodes should be printed.
Actual behavior It prints the following error: ERROR: relation "timescaledb_information.data_node" does not exist LINE 1: SELECT * FROM timescaledb_information.data_node ^ SQL state: 42P01 Character: 15