Skip to content
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

executor: Use uint32 as element length in hash join v2 #57458

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
save work
Signed-off-by: xufei <[email protected]>
  • Loading branch information
windtalker committed Nov 19, 2024
commit 2e3b9fc0c9edf59e820c344eb6cab8589fe85c2d
2 changes: 1 addition & 1 deletion pkg/executor/join/join_row_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func TestHeapObjectCanMove(t *testing.T) {

func TestFixedOffsetInRowLayout(t *testing.T) {
require.Equal(t, 8, sizeOfNextPtr)
require.Equal(t, 8, sizeOfLengthField)
require.Equal(t, 4, sizeOfLengthField)
}

func TestBitMaskInUint32(t *testing.T) {
Expand Down