Skip to content

Commit

Permalink
Be consistent with signed int32.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Feb 10, 2024
1 parent 85e55a4 commit 006da91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/substrait/planloader/planloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class SerializedPlan(ctypes.Structure):
external_free_substrait_plan.restype = None

external_save_substrait_plan = planloader_lib.save_substrait_plan
external_save_substrait_plan.argtypes = [ctypes.c_void_p, ctypes.c_uint32, ctypes.c_char_p, ctypes.c_uint32]
external_save_substrait_plan.argtypes = [ctypes.c_void_p, ctypes.c_int32, ctypes.c_char_p, ctypes.c_int32]
external_save_substrait_plan.restype = ctypes.c_char_p


Expand Down

0 comments on commit 006da91

Please sign in to comment.