HouseWatch
HouseWatch copied to clipboard
schema stats page error on loading data
We are using ClickHouse server 23.12.2, maybe there was an update in field names of system.tables leading to frontend code getting wrong fields
Frontend is reading name field, but query return table field instead:
I recommend to add new fields on query in housewatch/clickhouse/queries/sql.py, it won't break previous HouseWatch versions
from this:
AVAILABLE_TABLES_SQL = """
SELECT database, table
FROM system.tables
WHERE database NOT ILIKE 'information_schema'
"""
to this:
AVAILABLE_TABLES_SQL = """
SELECT database, table, table as name, total_bytes, total_bytes as readable_bytes, total_rows, engine, partition_key
FROM system.tables
WHERE database NOT ILIKE 'information_schema'
"""
if that okay I will submit a pull request
This indeed fixes the issue, same problem when using dev compose after creating a table.
@huwngnosleep are you still working on this issue?