From the docs (https://www.palantir.com/docs/foundry/transforms-python/duckdb#incremental-workflows), DuckDB is used in an incremental lightweight transforms.
When I run the same exact code I get this error:
```python
ddb = ctx.duckdb(read_modes={my_input: “current”})
^^^^^^^^^^
AttributeError: ‘LightweightContext’ object has no attribute ‘duckdb’
```
All dependencies in Code Repository are updated. Are docs out of date? Any working example on how to use DuckDB in an incremental lightweight xform?
