Environment
- ggsql DuckDB extension version: v0.4.1
- DuckDB version: v1.5.4
- Installed via:
INSTALL ggsql FROM community; LOAD ggsql;
- OS: MacOS
Description
The README in posit-dev/ggsql-duckdb documents the following as a working example:
SELECT * FROM range(10) t(x) VISUALISE x, x*x AS y DRAW line;
And via the scalar function:
SELECT ggsql('SELECT * FROM range(10) t(x) VISUALISE x, x*x AS y DRAW line');
Both produce a parse error on v0.4.1:
memory D SELECT ggsql('SELECT * FROM range(10) t(x) VISUALISE x, x*x AS y DRAW line');
Invalid Input Error:
ggsql: Parse error: Parse tree contains errors
Environment
INSTALL ggsql FROM community; LOAD ggsql;Description
The README in
posit-dev/ggsql-duckdbdocuments the following as a working example:And via the scalar function:
Both produce a parse error on v0.4.1: