Skip to content

Commit da0e6b5

Browse files
committed
0.0.194
1 parent e698598 commit da0e6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orso/dataframe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,11 +421,11 @@ def schema(self) -> RelationSchema:
421421
return self._schema
422422

423423
def __hash__(self):
424-
from cityhash import CityHash64
424+
from opteryx.third_party.cyan4973.xxhash import hash_bytes
425425

426426
_hash = 0
427427
for i, row in enumerate(self._rows):
428-
row_hash = CityHash64(str(row).encode())
428+
row_hash = hash_bytes(str(row).encode())
429429
_hash = i ^ _hash ^ row_hash
430430
return _hash
431431

0 commit comments

Comments
 (0)