To establish a connection between Index and your ClickHouse database, you’ll need to configure proper authentication credentials and access permissions.
-- Grant database accessGRANT SELECT ON production_db.* TO index_user;-- Grant show tables permissionGRANT SHOW TABLES ON production_db.* TO index_user;-- Grant describe permissionGRANT DESCRIBE ON production_db.* TO index_user;