Skip to content

Commit 8bfacaf

Browse files
authored
Update duckdb.md
1 parent c9f4b86 commit 8bfacaf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spiceaidocs/docs/data-accelerators/duckdb.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ datasets:
3131
```
3232

3333
## Limitations
34-
- Does not support schemas with [field types](https://duckdb.org/docs/sql/data_types): nested arrays/lists, structs or map fields. For example:
34+
- Does not support schemas with [field types](https://duckdb.org/docs/sql/data_types): nested arrays/lists, UTF8/string arrays/lists, structs or map fields. For example:
3535
- Supported:
3636
- `SELECT [1, 2, 3];`
37-
- `SELECT ['duck', 'goose', NULL, 'heron'];`
37+
- `SELECT ['1992-09-20 11:30:00.123456789', 'epoch'::TIMESTAMP]
3838
- Unsupported:
3939
- `SELECT [['duck', 'goose', 'heron'], ['frog', 'toad']]`
4040
- `SELECT {'x': 1, 'y': 2, 'z': 3}`
41-
- `SELECT MAP(['key1', 'key2', 'key3'], [10, 20, 30])`
41+
- `SELECT MAP(['key1', 'key2', 'key3'], [10, 20, 30])`
42+
- `SELECT ['duck', 'goose', 'heron'];`

0 commit comments

Comments
 (0)