This commit is contained in:
Lunny Xiao 2023-12-15 00:55:13 +08:00
parent 2248d3604e
commit 9181f5982f
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -70,6 +70,6 @@ func TestIndexHint(t *testing.T) {
return
}
_, err := testEngine.Table("userinfo").IndexHint("USE", "idx1").Get(new(Userinfo))
_, err := testEngine.Table("userinfo").IndexHint("USE", "UQE_userinfo_Username").Get(new(Userinfo))
assert.NoError(t, err)
}