Skip to content

Commit 3cafcc7

Browse files
authored
fix: Add missing pc.equal overload (#196)
1 parent 2dcbf66 commit 3cafcc7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pyarrow-stubs/compute.pyi

+8
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,14 @@ def equal(
965965
memory_pool: lib.MemoryPool | None = None,
966966
) -> lib.BooleanArray: ...
967967
@overload
968+
def equal(
969+
x: lib.Array | lib.ChunkedArray,
970+
y: lib.Array | lib.ChunkedArray,
971+
/,
972+
*,
973+
memory_pool: lib.MemoryPool | None = None,
974+
) -> lib.BooleanArray: ...
975+
@overload
968976
def equal(
969977
x: Expression,
970978
y: Expression,

0 commit comments

Comments
 (0)