https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41726 Andrew Fuerste-Henry <andrew@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrew@bywatersolutions.com --- Comment #1 from Andrew Fuerste-Henry <andrew@bywatersolutions.com> --- (In reply to Katrin Fischer from comment #0)
* Verify that you get NO results. Expected behavior: The item with no location should be found
In SQL we can see the difference: select * from items where location != "something";
Results including NULL/empty locations: select * from items where location != "something" OR location is NULL;
I guess I'd counter that the expected behavior in item search is that it behave the way a SQL query does, since item search is a GUI for SQL. That means "where location != 'something'" really means "where location has a value that is not 'something.'" But I do see the utility in allowing item search to optionally include NULLs on an "is not" search. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.