Skip to content

Commit

Permalink
fix bad copy-paste rightComparisonLimit (#7547)
Browse files Browse the repository at this point in the history
DESCRIPTION: change for #7543
  • Loading branch information
sminux committed Mar 5, 2024
1 parent 51009d0 commit d59c93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/columnar/columnar_tableam.c
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@ MajorVersionsCompatibleColumnar(char *leftVersion, char *rightVersion)
}
else
{
rightComparisionLimit = strlen(leftVersion);
rightComparisionLimit = strlen(rightVersion);
}

/* we can error out early if hypens are not in the same position */
Expand Down

0 comments on commit d59c93b

Please sign in to comment.