You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add DuckDB functions to data-connector docs (#291)
* Add DuckDB functions to data-connector docs
* Update spiceaidocs/docs/data-connectors/duckdb.md
Co-authored-by: Luke Kim <80174+lukekim@users.noreply.github.com>
* Improve clarity
---------
Co-authored-by: yfu <fevin86@gmail.com>
Co-authored-by: Luke Kim <80174+lukekim@users.noreply.github.com>
Copy file name to clipboardExpand all lines: spiceaidocs/docs/data-connectors/duckdb.md
+43-3Lines changed: 43 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
-
title: "DuckDB Data Connector"
3
-
sidebar_label: "DuckDB Data Connector"
4
-
description: "DuckDB Data Connector Documentation"
2
+
title: 'DuckDB Data Connector'
3
+
sidebar_label: 'DuckDB Data Connector'
4
+
description: 'DuckDB Data Connector Documentation'
5
5
---
6
6
7
7
## Dataset Source
@@ -41,3 +41,43 @@ datasets:
41
41
params:
42
42
open: /my/path/my_database.db
43
43
```
44
+
45
+
## DuckDB Functions
46
+
47
+
Common [data import](https://duckdb.org/docs/data/overview) DuckDB functions can also define datasets. Instead of a fixed table reference (e.g. `database.schema.table`), a DuckDB function is provided in the `from:` key. For example
0 commit comments