The "source" keyword was leading to a syntax error when not used as an alias with the AS before it. select 1 source would lead to this error for instance. This was happening in the "referential_constraints" which happened when querying a table that does not exist for example. I made a PR in DuckDB https://github.com/duckdb/duckdb/pull/10848 and if it gets accepted then it will be fixed for v0.10.1.
Fixes #95 Fixes #96
The "source" keyword was leading to a syntax error when not used as an alias with the
AS
before it.select 1 source
would lead to this error for instance. This was happening in the "referential_constraints" which happened when querying a table that does not exist for example. I made a PR in DuckDB https://github.com/duckdb/duckdb/pull/10848 and if it gets accepted then it will be fixed for v0.10.1.