You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/formats.md
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,22 @@
2
2
3
3
# Data Formats
4
4
5
-
| chdb is 100% feature compatible with ClickHouse π
5
+
| chDB is 100% feature compatible with ClickHouse π
6
6
7
7
Please refer to the [ClickHouse SQL Documentation](https://clickhouse.com/docs/en/sql-reference) for further information and examples.
8
8
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.
10
10
11
11
- Input formats are used to parse the data provided to `INSERT` and `SELECT` from a file-backed table such as File, URL or S3.
12
12
- Output formats are used to arrange the results of a `SELECT`, and to perform `INSERT`s into a file-backed table.
13
13
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:
0 commit comments