Skip to content

Commit

Permalink
Use correct syntax in test
Browse files Browse the repository at this point in the history
Signed-off-by: Dirkjan Bussink <d.bussink@gmail.com>
  • Loading branch information
dbussink committed Aug 31, 2023
1 parent 7176b22 commit 289578a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/vtgate/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ func TestPassthroughDDL(t *testing.T) {
TargetString: "TestExecutor",
}

alterDDL := "/* leading */ alter table passthrough_ddl add columne col bigint default 123 /* trailing */"
alterDDL := "/* leading */ alter table passthrough_ddl add column col bigint default 123 /* trailing */"
_, err := executorExec(ctx, executor, session, alterDDL, nil)
require.NoError(t, err)
wantQueries := []*querypb.BoundQuery{{
Expand Down

0 comments on commit 289578a

Please sign in to comment.