Hello everyone, I'm seeing an issue when trying to...
# questions-and-troubleshooting
p
Hello everyone, I'm seeing an issue when trying to display tables when connecting to the Starrocks mysql client I'm using Iceberge table format using a Rest catalog type When trying to display the tables with a simple "SHOW TABLES;" command I get an error:
ERROR 1064 (HY000): Failed to list views using REST Catalog
I haven't created any VIEWS so a bit baffled why its trying to query for views
r
Maybe the catalog has a view that's created outside of starrocks? (this is not supported). You can recreate the catalog and set property
iceberg.catalog.view-endpoints-supported
to true. This might remove the error.
p
Thanks for the suggestion I tried your suggestion but it didn't help. This is after creating a table without any predefined views, or views created outside of the the starrocks client
Seems more like a bug in starrocks, where its making a REST call to display the views automatically
"GET /v1/{prefix}/namespaces/{namespace}/views"