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
{{ message }}
This repository was archived by the owner on Apr 15, 2022. It is now read-only.
:param schema_table_name: String full table name in the format "schema.table_name"
308
308
If only a table name is provided (ie no '.' in the string) schema SPLICE will be assumed
309
309
If this table exists in the database already, it will be DROPPED and a new one will be created
310
310
:param dataframe: The dataframe that the table will be created for
311
311
:param new_schema: A boolean to create a new schema. If True, the function will create a new schema before creating the table. If the schema already exists, set to False [DEFAULT True]
312
-
:param types: A dictionary of type {string: string} containing column names and their respective SQL types. The values of the dictionary MUST be valid SQL types. See https://doc.splicemachine.com/sqlref_datatypes_intro.html
312
+
:param drop_table: An optinal boolean to drop the table if it exists. [DEFAULT False]
313
+
:param types: An optional dictionary of type {string: string} containing column names and their respective SQL types. The values of the dictionary MUST be valid SQL types. See https://doc.splicemachine.com/sqlref_datatypes_intro.html
313
314
If None or if any types are missing, types will be assumed automatically from the dataframe schema as follows:
0 commit comments