Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Commit 4a88cde

Browse files
author
Epstein
authored
Update context.py (#59)
Fix for df insert
1 parent ec6433e commit 4a88cde

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

splicemachine/spark/context.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ def insert(self, dataframe, schema_table_name):
116116
:param dataframe: (DF) The dataframe you would like to insert
117117
:param schema_table_name: (string) The table in which you would like to insert the RDD
118118
"""
119-
# make sure column names are in the correct case
120-
dataframe = self.replaceDataframeSchema(dataframe, schema_table_name)
121119
return self.context.insert(dataframe._jdf, schema_table_name)
122120

123121
def upsert(self, dataframe, schema_table_name):

0 commit comments

Comments
 (0)