DuckDB extension for DocumentDB metadata and SQL integration, with schema inference scaffolding and collection access helpers.
Maintainer(s):
sandeepsnairms
Installing and Loading
INSTALL documentdb FROM community;
LOAD documentdb;
Example
LOAD 'documentdb';
SELECT documentdb_version('documentdb') AS version;
SELECT documentdb_collections('app') AS collections;
About documentdb
The duckdb-documentdb extension provides a DuckDB-facing integration layer for DocumentDB-style document collections. The current implementation includes extension registration, collection metadata functions, and an initial schema inference and scan-planning scaffold. It is intended to enable direct SQL querying and analytical access to document data without an ETL step, while remaining compatible with the broader DuckDB extension model.
Added Functions
| function_name | function_type | description | comment | examples |
|---|---|---|---|---|
| documentdb_collections | scalar | NULL | NULL | |
| documentdb_version | scalar | NULL | NULL |
Overloaded Functions
This extension does not add any function overloads.
Added Types
This extension does not add any types.
Added Settings
This extension does not add any settings.