rockwurst
Results
2
comments of
rockwurst
Looks like this bug was introduced by 1e624ccfc966f98ee781c443f13efcb3e3aac12c. See the change in [`schema/append.go`](https://github.com/uptrace/bun/blame/1e624ccfc966f98ee781c443f13efcb3e3aac12c/schema/append.go#L82-L86)
To reproduce: ``` git checkout v1.1.12 ``` Add this test case to the end of the `queries` declaration in `internal/dbtest/query_test.go`: ```go func(db *bun.DB) schema.QueryAppender { return db.NewSelect().Where("id IN (?)", bun.In([]int{}))...