We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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)
The text was updated successfully, but these errors were encountered:
This can be directly quickly accomplished now by creating a global temporary table then using the get_schema method.
sql.create.table_from_dataframe(table_name='##test_schema', dataframe=data) sql.get_schema('##test_schema')
Sorry, something went wrong.
No branches or pull requests
Provide a simple workflow with documentation on how a table may be initially created, while exposing what will happen before objects are created.
Then this workflow could follow.
The text was updated successfully, but these errors were encountered: