Skip to content

DuckDB support for read_json  #1007

@paulsm

Description

@paulsm

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

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions