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
def insert_df(table: str, df: pd.Dataframe, max_size: int):
:param table: table to create/replace.
:param df: dataframe to insert.
:param max_size: max number of characters allowed for the SQL query text. This should be <= query.max-length set on Trino to prevent
QUERY_TEXT_TOO_LARGE error.
This should be enough for phase 1. For future iterations, we can think about how to upsert data to an existing table....
Describe alternatives you've considered
No response
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Describe the feature
Hello, we'd like to support creating a Trino table using dataframe.
API would be simple, something like
where
This should be enough for phase 1. For future iterations, we can think about how to upsert data to an existing table....
Describe alternatives you've considered
No response
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: