Is there any way that the `read_query` tools can have its "begin with `SELECT`" limitation removed to allow CTE queries i.e. ``` WITH mycte AS (SELECT foo FROM bar JOIN hoo USING(id_nuts)) SELECT * FROM mycte; ```
Is there any way that the
read_querytools can have its "begin withSELECT" limitation removed to allow CTE queries i.e.