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
Hello. I have a function which creates a new iceberg table. Now is there any possibility how to force an iceberg table to create initial snapshot? Even if there are no data present.
Simplified code:
catalog=catalog.load_table(...)
table=catalog.create_table(...)
table.snapshots() # returns empty list
(Rationale is, that I am using a 3rd party tool, which fails if there is no snapshot yet present. I also have no power over this 3rd party tool).