-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use IS [NOT] NULL instead of DBMS_LOB.COMPARE for nil CLOB/BLOB queries #2415
base: master
Are you sure you want to change the base?
Changes from 4 commits
29c8d6c
e871d2a
33ec70a
306871d
51b7b88
5f07e23
c8afffa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,10 @@ class ::TestEmployee < ActiveRecord::Base; end | |
class ::Test2Employee < ActiveRecord::Base | ||
serialize :comments | ||
end | ||
class ::TestSerializedHashEmployee < ActiveRecord::Base | ||
self.table_name = "test_employees" | ||
serialize :comments, type: Hash, coder: YAML | ||
end | ||
class ::TestEmployeeReadOnlyClob < ActiveRecord::Base | ||
self.table_name = "test_employees" | ||
attr_readonly :comments | ||
|
@@ -241,4 +245,25 @@ class ::TestSerializeEmployee < ActiveRecord::Base | |
) | ||
expect(Test2Employee.where(comments: search_data)).to have_attributes(count: 1) | ||
end | ||
|
||
it "should find NULL CLOB data when queried with nil" do | ||
TestEmployee.delete_all | ||
TestEmployee.create!(comments: nil) | ||
TestEmployee.create!(comments: @char_data) | ||
expect(TestEmployee.where(comments: nil)).to have_attributes(count: 1) | ||
end | ||
|
||
it "should find serialized NULL CLOB data when queried with nil" do | ||
Test2Employee.delete_all | ||
Test2Employee.create!(comments: nil) | ||
Test2Employee.create!(comments: { some: 'text' }) | ||
expect(Test2Employee.where(comments: nil)).to have_attributes(count: 1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I understand, this test should be using the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think |
||
end | ||
|
||
it "should find serialized NULL CLOB data when queried with {}" do | ||
TestSerializedHashEmployee.delete_all | ||
TestSerializedHashEmployee.create!(comments: nil) | ||
TestSerializedHashEmployee.create!(comments: { some: 'text' }) | ||
expect(TestSerializedHashEmployee.where(comments: {})).to have_attributes(count: 1) | ||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe this class name should be
Test2SerializedHashEmployee
because inspec/active_record/oracle_enhanced/type/binary_spec.rb
there is already a classTestSerializedHashEmployee
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought those classes were scoped to the
describe
block, so there shouldn't be any conflict. E.g., there's already aTestEmployee
class defined in bothbinary_spec.rb
andtext_spec.rb
.Happy to make this change though, if that's the safer route.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the describe block scopes these anyhow, I don't see how it would. More likely to me, Ruby just reopens the class and changes it as it goes which seems messy to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, you're right. I think I conflated this with my understanding of helper methods in RSpec.
I also overlooked that the existing specs seem to be dealing with this using
remove_const
after all the specs have run.I've added a
remove_const
to clean up the new test class I added. Do you think that addresses the issue? If not, I'll finally give in and change the name 😅. Maybe to something likeTextSpecSerializedHashEmployee
so we don't have to keep track of what Test Employee number we're up to across files.