Skip to content

Commit

Permalink
fix: add VarChar to the _decompile_field dispatcher
Browse files Browse the repository at this point in the history
We support `VarChar` we just aren't dispatching on it
  • Loading branch information
gforsyth authored and cpcloud committed Aug 9, 2022
1 parent 63b4042 commit 30e1daa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis_substrait/compiler/decompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ def _decompile_field_generic(
@_decompile_field.register(stt.Type.FP64)
@_decompile_field.register(stt.Type.FP32)
@_decompile_field.register(stt.Type.String)
@_decompile_field.register(stt.Type.VarChar)
@_decompile_field.register(stt.Type.Binary)
@_decompile_field.register(stt.Type.Timestamp)
@_decompile_field.register(stt.Type.Date)
Expand Down

0 comments on commit 30e1daa

Please sign in to comment.