Skip to content

Commit

Permalink
Update wording in error message
Browse files Browse the repository at this point in the history
Co-authored-by: Florent Poinsard <[email protected]>
Signed-off-by: David Piegza <[email protected]>
  • Loading branch information
davidpiegza and frouioui authored Sep 14, 2023
1 parent 7657589 commit 56d9da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/topotools/vschema_ddl.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ func ApplyVSchemaDDL(ksName string, ks *vschemapb.Keyspace, alterVschema *sqlpar
}

if table.AutoIncrement == nil {
return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "vschema does not contain auto inc %v on table %s in keyspace %s", table.AutoIncrement, name, ksName)
return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "vschema does not contain auto increment %v on table %s in keyspace %s", table.AutoIncrement, name, ksName)
}

table.AutoIncrement = nil
Expand Down

0 comments on commit 56d9da9

Please sign in to comment.