-
Notifications
You must be signed in to change notification settings - Fork 177
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
The Observable Framework documentation explains how to use the read_parquet or read_csv DuckDB functions to consume from endpoints that expose those data formats. It would be useful to extend this to support the DuckDB json extension's read_json function also, use of which currently fails with this error message:
Error: Catalog Error: Table Function with name "read_json" is not in the catalog, but it exists in the json extension.
Please try installing and loading the json extension by running:
INSTALL json;
LOAD json;
Alternatively, consider enabling auto-install and auto-load by running:
SET autoinstall_known_extensions=1;
SET autoload_known_extensions=1;
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request