We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8af4046 commit c4fe227Copy full SHA for c4fe227
apis/python/src/tiledbsoma/io/ingest.py
@@ -1098,10 +1098,12 @@ def _extract_new_values_for_append(
1098
with _factory.open(
1099
df_uri, "r", soma_type=DataFrame, context=context
1100
) as previous_soma_dataframe:
1101
- previous_table = previous_soma_dataframe.read().concat()
1102
- previous_df = previous_table.to_pandas()
+ previous_sjids_table = previous_soma_dataframe.read().concat()
1103
previous_join_ids = set(
1104
- int(e) for e in get_dataframe_values(previous_df, SOMA_JOINID)
+ int(e)
+ for e in get_dataframe_values(
1105
+ previous_sjids_table.to_pandas(), SOMA_JOINID
1106
+ )
1107
)
1108
mask = [
1109
e.as_py() not in previous_join_ids for e in arrow_table[SOMA_JOINID]
0 commit comments