Open
Description
Provide a simple workflow with documentation on how a table may be initially created, while exposing what will happen before objects are created.
# this method doesn't exist, but would be useful as an intermediate step
schema = sql.infer.table_from_dataframe(df)
Then this workflow could follow.
sql.create.table(schema)
sql.write.insert(df)