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
Bring back the functionality added in #320 in Lance
def merge(self, right: pyarrow.Table, left_on: str, right_on: str, metadata: Optional[Dict[str, str]] = None, )
To use it,
import lance dataset = lance.dataset("/tmp/dataset") new_table = pyarrow.Table.from_pandas(df) dataset.merge(new_table, left_on="id", right_on="id")
Once the merge is successfully done, a new version of dataset is generated.
References:
The text was updated successfully, but these errors were encountered:
wjones127
Successfully merging a pull request may close this issue.
Problem Statement
Bring back the functionality added in #320 in Lance
To use it,
Once the merge is successfully done, a new version of dataset is generated.
References:
The text was updated successfully, but these errors were encountered: