Skip to content

Commit

Permalink
Fix incorrect logical check
Browse files Browse the repository at this point in the history
Signed-off-by: Rohit Nayak <[email protected]>
  • Loading branch information
rohit-nayak-ps committed Dec 13, 2024
1 parent a974850 commit 271e95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/vtgate/vindexes/vschema.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ func buildKeyspaceGlobalTables(vschema *VSchema, ksvschema *KeyspaceSchema, skip
if gt, ok := vschema.globalTables[tname]; ok {
// There is already an entry table stored in global tables
// with this name.
if !skipIfAlreadyGlobal {
if skipIfAlreadyGlobal {
// Called when updating from schema tracking
continue
}
Expand Down

0 comments on commit 271e95f

Please sign in to comment.