Fix `insertWithLastInsertID()` so it doesnt try to retrieve string IDs

pull/53/head
Vinícius Garcia 2024-10-28 23:43:29 -03:00
parent 81026c8aac
commit dcee1a01a4
2 changed files with 33 additions and 5 deletions

16
ksql.go
View File

@ -526,21 +526,27 @@ func (c DB) insertWithLastInsertID(
}
vID := reflect.ValueOf(id)
tID := vID.Type()
fieldAddr := v.Elem().Field(info.ByName(idName).Index).Addr()
fieldType := fieldAddr.Type().Elem()
if !tID.ConvertibleTo(fieldType) {
switch fieldType.Kind() {
case reflect.Int, reflect.Int64, reflect.Uint, reflect.Uint64:
fieldAddr.Elem().Set(vID.Convert(fieldType))
return nil
case reflect.String:
// In case the record's ID is a string,
// we cannot retrieve it, so we just return:
return nil
default:
return fmt.Errorf(
"can't convert last insert id of type int64 into field `%s` of type %v",
idName,
fieldType,
)
}
fieldAddr.Elem().Set(vID.Convert(fieldType))
return nil
}
func (c DB) insertWithNoIDRetrieval(

View File

@ -786,6 +786,28 @@ func InsertTest(
tt.AssertEqual(t, result.Address, u.Address)
})
t.Run("should insert one user correctly with a string ID", func(t *testing.T) {
c := newTestDB(db, dialect)
u := user{
Name: "FernandaIsTheID",
Address: address{
Country: "Brazil",
},
}
err := c.Insert(ctx, NewTable("users", "name"), &u)
tt.AssertNoErr(t, err)
tt.AssertEqual(t, u.Name, "FernandaIsTheID")
result := user{}
err = getUserByName(db, dialect, &result, "FernandaIsTheID")
tt.AssertNoErr(t, err)
tt.AssertEqual(t, result.Name, u.Name)
tt.AssertEqual(t, result.Address, u.Address)
})
t.Run("should insert ignoring the ID with multiple ids", func(t *testing.T) {
if dialect.InsertMethod() != sqldialect.InsertWithLastInsertID {
return