Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion products/chdb/install/c.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -326,4 +326,4 @@ cleanup:

- **Main Repository**: [chdb-io/chdb](https://github.com/chdb-io/chdb)
- **Issues and Support**: Report issues on the [GitHub repository](https://github.com/chdb-io/chdb/issues)
- **C API Documentation**: [Bindings Documentation](https://github.com/chdb-io/chdb/blob/main/bindings.md)
- **C API Documentation**: [Bindings Documentation](https://github.com/chdb-io/chdb-core/blob/main/bindings.md)
2 changes: 1 addition & 1 deletion products/chdb/install/python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ result = sess.query("""
""", "JSON")
```

See also: [test_stateful.py](https://github.com/chdb-io/chdb/blob/main/tests/test_stateful.py).
See also: [test_stateful.py](https://github.com/chdb-io/chdb-core/blob/main/tests/test_stateful.py).

### Python DB-API 2.0 interface {#python-db-api-20}

Expand Down
2 changes: 1 addition & 1 deletion products/chdb/reference/data-formats.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Output formats are used to arrange the results of a `SELECT`, and to perform `IN
As well as the data formats that ClickHouse supports, chDB also supports:

- `ArrowTable` as an output format, the type is Python `pyarrow.Table`
- `DataFrame` as an input and output format, the type is Python `pandas.DataFrame`. For examples, see [`test_joindf.py`](https://github.com/chdb-io/chdb/blob/main/tests/test_joindf.py)
- `DataFrame` as an input and output format, the type is Python `pandas.DataFrame`. For examples, see [`test_joindf.py`](https://github.com/chdb-io/chdb-core/blob/main/tests/test_joindf.py)
- `Debug` as ab output (as an alias of `CSV`), but with enabled debug verbose output from ClickHouse.

The supported data formats from ClickHouse are:
Expand Down