-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
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
cp to 1.2-dev 'fix a bug that cause hashmap data wrong' #18779
Conversation
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Reviewer Guide 🔍
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨
|
User description
What type of PR is this?
Which issue(s) this PR fixes:
issue #https://github.com/matrixorigin/MO-Cloud/issues/4049
What this PR does / why we need it:
cp to 1.2-dev 'fix a bug that cause hashmap data wrong'
PR Type
Bug fix, Tests
Description
needDupVec
flag to manage vector duplication when evaluating join conditions.container
struct to include logic for freeing duplicated vectors, ensuring proper memory management.t3
, ensuring the correctness of the delete functionality.Changes walkthrough 📝
build.go
Fix hashmap data issue by handling vector duplication
pkg/sql/colexec/hashbuild/build.go
pbplan
.needDupVec
flag to handle condition expressions.needDupVec
.types.go
Enhance container struct with vector duplication handling
pkg/sql/colexec/hashbuild/types.go
needDupVec
field tocontainer
struct.delete.result
Add test case for delete operation on table t3
test/distributed/cases/dml/delete/delete.result
t3
.delete.test
Implement delete operation test for table t3
test/distributed/cases/dml/delete/delete.test
t3
.