Skip to content

Commit

Permalink
fix: split table chunk columns metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
equinor-ruaj committed Jan 24, 2025
1 parent e875bbf commit 568d4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmu/sumo/sim2sumo/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def convert_table_2_sumo_file(datafile, obj, tagname, config):

md5_hex = hashlib.md5(bytestring).hexdigest()
md5_b64 = base64.b64encode(bytes.fromhex(md5_hex)).decode()
chunk_meta["data"]["spec"]["columns"] = table.columns
chunk_meta["data"]["spec"]["columns"] = table.column_names
chunk_meta["data"]["spec"]["num_columns"] = table.num_columns
chunk_meta["data"]["spec"]["num_rows"] = table.num_rows
chunk_meta["data"]["spec"]["size"] = (
Expand Down

0 comments on commit 568d4bb

Please sign in to comment.