Skip to content

Commit

Permalink
make hash type uint64
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan authored Oct 3, 2024
1 parent 60a41c7 commit e149754
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dfanalyzer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@ def __init__(self, file_pattern, load_fn=None, load_cols={}, load_data = {}, met
'tinterval': "string[pyarrow]" if not self.conf.time_approximate else "uint64[pyarrow]", 'trange': "uint64[pyarrow]"}
columns.update(io_columns())
columns.update(load_cols)
file_hash_columns = {'name': "string[pyarrow]", 'hash':"string[pyarrow]"}
hostname_hash_columns = {'name': "string[pyarrow]", 'hash':"string[pyarrow]"}
string_hash_columns = {'name': "string[pyarrow]", 'hash':"string[pyarrow]"}
file_hash_columns = {'name': "string[pyarrow]", 'hash':"uint64[pyarrow]"}
hostname_hash_columns = {'name': "string[pyarrow]", 'hash':"uint64[pyarrow]"}
string_hash_columns = {'name': "string[pyarrow]", 'hash':"uint64[pyarrow]"}
other_metadata_columns = { 'name':"string[pyarrow]" ,'value':"string[pyarrow]" }
if "FH" in metadata_cols:
file_hash_columns.update(metadata_cols["FH"])
Expand Down

0 comments on commit e149754

Please sign in to comment.