You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported by Øyvind Lind-Johansen
The TableCollection attribute columns does not include all the available column names.
This code snippet from fmu.sumo.explorer import Explorer CASE = Explorer("prod").get_case_by_uuid("ff4b33d5-f653-4d96-856b-0289dda2bc0b") SUMMARY = CASE.tables.filter("SMB_HISTORY", "summary", aggregation="collection") print([name for name in SUMMARY.columns if name.startswith("W")])
returns an empty list, but should give more than 10000 hits (based on swagger)
The text was updated successfully, but these errors were encountered:
Reported by Øyvind Lind-Johansen
The TableCollection attribute columns does not include all the available column names.
This code snippet
from fmu.sumo.explorer import Explorer
CASE = Explorer("prod").get_case_by_uuid("ff4b33d5-f653-4d96-856b-0289dda2bc0b")
SUMMARY = CASE.tables.filter("SMB_HISTORY", "summary", aggregation="collection")
print([name for name in SUMMARY.columns if name.startswith("W")])
returns an empty list, but should give more than 10000 hits (based on swagger)
The text was updated successfully, but these errors were encountered: