This commit is contained in:
Lunny Xiao 2023-12-15 00:58:11 +08:00
parent 9181f5982f
commit 48d48ab359
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 return
} }
_, err := testEngine.Table("userinfo").IndexHint("USE", "UQE_userinfo_Username").Get(new(Userinfo)) _, err := testEngine.Table("userinfo").IndexHint("USE", "UQE_userinfo_username").Get(new(Userinfo))
assert.NoError(t, err) assert.NoError(t, err)
} }