You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to select more than one selector I wrote the following CTE
But, anyquery returned this error:
anyquery> WITH files AS (
......... SELECT * FROM read_html('http://localhost:8000/', '.mtime')
......... UNION
......... SELECT * FROM read_html('http://localhost:8000/', '.size')
......... )
......... SELECT *
......... FROM files;
no such table: read_html
anyquery>
Hey @marcoarthur, this should be fixed in 0.2.1. Could you check if it's fixed?
P.S. The read_html table caches data for 60s. If you're often refreshing localhost:8000, that might be an issue. You can disable caching by adding cache_ttl='0' to the table arguments.
Trying to select more than one selector I wrote the following CTE
But, anyquery returned this error:
But I am able to run the SELECT outside the CTE:
My anyquery: anyquery version 0.1.3 (built with go1.22.6 for linux/amd64)
The text was updated successfully, but these errors were encountered: