From d12c2c834c0eeb842b7ef3aba81ae935318738dd Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Fri, 6 Sep 2024 04:52:39 -0400 Subject: [PATCH] fix(duckdb): handle arrow UUID values coming back as bytes --- ibis/formats/pandas.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ibis/formats/pandas.py b/ibis/formats/pandas.py index ea67c9ad7537..a1ea9ea82489 100644 --- a/ibis/formats/pandas.py +++ b/ibis/formats/pandas.py @@ -383,6 +383,8 @@ def convert(value): return value elif isinstance(value, UUID): return value + elif isinstance(value, bytes): + return UUID(bytes=value) return UUID(value) return convert