Discussed in https://github.com/go-gorm/gorm/discussions/6538

Originally posted by **SunnyDate** August 22, 2023 go version go version go1.17 linux/amd64 go build # gorm.io/gorm ./gorm.go:382:64: reflect.ValueOf(tx).Elem().FieldByName("db").UnsafePointer undefined (type reflect.Value has no field or method UnsafePointer)

UnsafePointer was added in go 1.18. https://pkg.go.dev/reflect@go1.18.10#Value.UnsafePointer

In go 1.16 and 1.17, there is not UnsafePointer. https://pkg.go.dev/reflect@go1.16.15#Value.UnsafePointer

Problem was happened after https://github.com/go-gorm/gorm/pull/6535

To reproduce, run go build gorm v1.25.4 in go version 1.16 or 1.17.

@qqxhb, could you fix it or bump up go version in go.mod?

fyi @jinzhu

Comment From: github-actions[bot]

The issue has been automatically marked as stale as it missing playground pull request link, which is important to help others understand your issue effectively and make sure the issue hasn't been fixed on latest master, checkout https://github.com/go-gorm/playground for details. it will be closed in 30 days if no further activity occurs. if you are asking question, please use the Question template, most likely your question already answered https://github.com/go-gorm/gorm/issues or described in the document https://gorm.io ✨ Search Before Asking

Comment From: alwaysbana

Did you solve the problem

Comment From: github-actions[bot]

The issue has been automatically marked as stale as it missing playground pull request link, which is important to help others understand your issue effectively and make sure the issue hasn't been fixed on latest master, checkout https://github.com/go-gorm/playground for details. it will be closed in 30 days if no further activity occurs. if you are asking question, please use the Question template, most likely your question already answered https://github.com/go-gorm/gorm/issues or described in the document https://gorm.io ✨ Search Before Asking

Comment From: Riken-Shah

a gentle bump, facing the same issue!