From 6b66c3cd08da342653b72ba5e1e3bc3f33730f05 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sat, 14 Oct 2023 06:44:46 -0400 Subject: [PATCH] feat(formats): map ibis JSON type to pyarrow strings --- ibis/formats/pyarrow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ibis/formats/pyarrow.py b/ibis/formats/pyarrow.py index ec63c96ed13c0..7fbb90b9b3897 100644 --- a/ibis/formats/pyarrow.py +++ b/ibis/formats/pyarrow.py @@ -56,6 +56,7 @@ dt.Unknown: pa.string(), dt.MACADDR: pa.string(), dt.INET: pa.string(), + dt.JSON: pa.string(), }