mirror of
https://github.com/nushell/nushell.git
synced 2025-03-31 03:08:14 +02:00
Fixes #8341. The `CustomValue::to_json()` function is an odd duck; it defaults to returning `null`, and no `CustomValue` implementations override it to do anything useful. I forgot to implement `to_json()` for `SQLiteDatabase`, so `open foo.db | to json` was returning `null`. To fix this, I've removed `CustomValue::to_json()` and now `to json` will collect a `CustomValue` into a regular `Value` before doing a JSON conversion. |
||
---|---|---|
.. | ||
eager | ||
expressions | ||
lazy | ||
series | ||
values | ||
mod.rs | ||
README.md | ||
test_dataframe.rs | ||
utils.rs |
Dataframe
This dataframe directory holds all of the definitions of the dataframe data structures and commands.
There are three sections of commands:
For more details see the Nushell book section on dataframes