Feature Request / Improvement
it will be nice to have an API to quickly check if a table exist, or alternatively create table if it does not exist
current I am doing this
try:
table = catalog.create_table("aemo.price",schema=price.schema)
except:
pass
table = catalog.load_table("aemo.price")
table.append(price)