Files
greptimedb/src/common/datasource/tests
Weny Xu 4094907c09 fix: fix type casting issue (#1652)
* fix: fix type casting issue

* chore: apply suggestion from CR
2023-05-27 00:17:56 +08:00
..
2023-05-27 00:17:56 +08:00

Parquet

The parquet/basic.parquet was converted from csv/basic.csv via bdt.

Internal of parquet/basic.parquet:

Data:

+-----+-------+
| num | str   |
+-----+-------+
| 5   | test  |
| 2   | hello |
| 4   | foo   |
+-----+-------+

Schema:

+-------------+-----------+-------------+
| column_name | data_type | is_nullable |
+-------------+-----------+-------------+
| num         | Int64     | YES         |
| str         | Utf8      | YES         |
+-------------+-----------+-------------+