We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14dd096 commit 4c237c7Copy full SHA for 4c237c7
activerecord/test/cases/adapters/postgresql/bind_parameter_test.rb
@@ -34,11 +34,11 @@ def test_where_with_rational_for_string_column_using_bind_parameters
34
end
35
36
def test_where_with_nil_for_string_column_using_bind_parameters
37
- post = Post.create!
38
- relation = Post.where("LOWER(title) IS ?", nil)
+ post = Post.create!(title: "Foo", body: "Bar", type: nil)
+ relation = Post.where("LOWER(type) IS ?", nil)
39
assert_equal post, relation.first
40
41
- expected_sql = %{SELECT "posts".* FROM "posts" WHERE (LOWER(title) IS NULL)}
+ expected_sql = %{SELECT "posts".* FROM "posts" WHERE (LOWER(type) IS NULL)}
42
assert_equal(expected_sql, relation.to_sql)
43
44
0 commit comments