uptrace / bun

SQL-first Golang ORM
https://bun.uptrace.dev
BSD 2-Clause "Simplified" License
3.65k stars 221 forks source link

feat: `dbfixture.New` to accept IDB interface #900

Closed hirasawayuki closed 1 year ago

hirasawayuki commented 1 year ago

This PR addresses the limitation where the dbfixture.New function only accepts a pointer to bun.DB. Both bun.DB and bun.TX implement the IDB interface. By allowing dbfixture.New to accept the IDB interface, we provide more flexibility, especially during testing.

close https://github.com/uptrace/bun/issues/899

vmihailenco commented 1 year ago

Thanks!