Skip to content

Commit cfc04c8

Browse files
committed
Add chDB unique formats
1 parent 48645cf commit cfc04c8

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

β€Ždocs/_sidebar.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- docs/_sidebar.md -->
22

3-
* [About chdb](/)
3+
* [About chDB](/)
44
* Documentation
55
* [Installation](install.md)
66
* [Data Formats](formats.md)
@@ -24,12 +24,11 @@
2424
* [Libchdb](https://github.com/chdb-io/chdb)
2525
* Integrations
2626
* [JupySQL](https://jupysql.ploomber.io/en/latest/integrations/chdb.html)
27-
* [chdb-server](https://github.com/chdb-io/chdb-server)
2827
* [chdb-lambda](https://github.com/chdb-io/chdb-lambda)
2928
* [chdb-cli](https://github.com/chdb-io/chdb-cli)
3029
* External Links
3130
* [Discord](https://discord.gg/Njw5YXSPPc)
32-
* [Birth of chdb](https://auxten.com/the-birth-of-chdb/)
33-
* [ClickHouse & chdb](https://clickhouse.com/blog/welcome-chdb-to-clickhouse)
31+
* [Birth of chDB](https://auxten.com/the-birth-of-chdb/)
32+
* [ClickHouse & chDB](https://clickhouse.com/blog/welcome-chdb-to-clickhouse)
3433
* [Team & Contributors](https://github.com/chdb-io/chdb#contributors)
35-
* [Sponsor chdb πŸ’›](https://github.com/sponsors/chdb-io)
34+
* [Sponsor chDB πŸ’›](https://github.com/sponsors/chdb-io)

β€Ždocs/formats.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@
22

33
# Data Formats
44

5-
| chdb is 100% feature compatible with ClickHouse πŸš€
5+
| chDB is 100% feature compatible with ClickHouse πŸš€
66

77
Please refer to the [ClickHouse SQL Documentation](https://clickhouse.com/docs/en/sql-reference) for further information and examples.
88

9-
Just like ClickHouse, chdb can accept and return data in various formats.
9+
Just like ClickHouse, chDB can accept and return data in various formats.
1010

1111
- Input formats are used to parse the data provided to `INSERT` and `SELECT` from a file-backed table such as File, URL or S3.
1212
- Output formats are used to arrange the results of a `SELECT`, and to perform `INSERT`s into a file-backed table.
1313

14-
The supported data formats are:
14+
Besides all the data formats that ClickHouse supported, chDB also support:
15+
16+
- `ArrowTable` as output format, the type is Python `pyarrow.Table`
17+
- `DataFrame` as 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)
18+
- `Debug` as output, it's an alias of `CSV`. But it will enable debug verbose output of ClickHouse Engine.
19+
20+
The supported data formats from ClickHouse engine are:
1521

1622
| Format | Input | Output |
1723
|-------------------------------------------------------------------------------------------|------|-------|

0 commit comments

Comments
Β (0)