Skip to content

Commit aa560a3

Browse files
claudespicelukekim
authored andcommitted
docs(clickhouse): remove unsupported DateTime64 type-mapping row
ClickHouse schema inference (get_schema in clickhouseconn.rs) uses the string-based map_clickhouse_type_to_arrow, which only matches the literal "DateTime" — a DateTime64 column reports its type as "DateTime64(p[, tz])" in system.columns and falls through to the Unsupported error, so a table with a DateTime64 column cannot be registered. Completes #1794, which removed the sibling unsupported Date32 row added by the same PR (#1701) but missed DateTime64.
1 parent 433ad87 commit aa560a3

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

website/docs/components/data-connectors/clickhouse.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ The table below shows the ClickHouse data types supported, along with the type m
9090
| `UUID` | `Utf8` |
9191
| `Date` | `Date32` |
9292
| `DateTime` | `Timestamp(Second, None)` |
93-
| `DateTime64` | `Timestamp(Second, None)` |
9493
| `Nullable(T)` | Mapped inner type `T` |
9594

9695
## Examples

website/versioned_docs/version-2.0.x/components/data-connectors/clickhouse.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ The table below shows the ClickHouse data types supported, along with the type m
9090
| `UUID` | `Utf8` |
9191
| `Date` | `Date32` |
9292
| `DateTime` | `Timestamp(Second, None)` |
93-
| `DateTime64` | `Timestamp(Second, None)` |
9493
| `Nullable(T)` | Mapped inner type `T` |
9594

9695
## Examples

0 commit comments

Comments
 (0)