Skip to content

Commit

Permalink
test: implement the needed interface
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <[email protected]>
  • Loading branch information
systay committed Dec 18, 2024
1 parent 94054f3 commit 1e7fbe3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions go/vt/vtgate/evalengine/integration/comparison_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@ type vcursor struct {
env *vtenv.Environment
}

func (vc *vcursor) SetLastInsertID(id uint64) {}

var _ evalengine.VCursor = (*vcursor)(nil)

func (vc *vcursor) GetKeyspace() string {
return "vttest"
}
Expand Down

0 comments on commit 1e7fbe3

Please sign in to comment.