W Rails 4 możesz użyć User.where.not(id: [])
co da ci poprawny wynik. Produkuje:
SELECT "users".* FROM "users" WHERE (1 = 1)
Niestety User.where('id NOT IN (?)', [])
powinien być równoważny, ale tak nie jest. Nadal daje zły wynik:
SELECT "users".* FROM "users" WHERE (id NOT IN (NULL))
Referencje:
- https://github.com/rails/rails/issues/778
- https://github.com/rails/arel/commit/cbff1bcf
- https://github.com/rails/rails/pull/8332
- https://github.com/rails/rails/commit/8d02afeaee8993bd0fde69687fdd9bf30921e805