Closed gmuskie closed 4 days ago
Case sensitivity problem?
It's not case sensitivity issue. No matter upper case or lower case, nothing show up:
Can you please show DDL of this view?
Here you go:
CREATE VIEW v_switch_port_to_data_port AS SELECT i.description AS switch_description, i.hostname AS hostname_or_usage, s.switch_port_number AS port_no, x.name AS to_panel_port, x.jack_position AS cubicle_jack_position, x.firstname, x.lastname, y.category || " | " || y.description || " | " || COALESCE(y.hostname, '') || " | " || COALESCE(y.remark, '') AS to_device FROM switch_port s LEFT JOIN inventory i ON i.inventory_id = s.inventory_id LEFT JOIN inventory y ON y.inventory_id = s.device_id LEFT JOIN ( SELECT d.data_port_id, d.name, d.jack_position, j.location_name, j.firstname, j.lastname FROM network_port AS d LEFT JOIN ( SELECT l.location_id, l.name AS location_name, e.firstname, e.lastname FROM location l LEFT JOIN employee e ON e.employee_id = l.employee_id ) j ON j.location_id = d.location_id ) x ON x.data_port_id = s.data_port_id;
Okay, I think I found the problem. It looks like the filter works for the 1st time when you just open the View window, but then any subsequent attempts to filter will return empty results.
It obviously is a bug and will be fixed.
It looks like this is fixed by the way of fixing #5065. At least I can no longer reproduce it now as I have the #5065 fixed.
Thanks. Will check it when 3.4.5 is ready.
Details
After entering the filter text in Views, can't see any result. Not sure it is related to https://github.com/pawelsalawa/sqlitestudio/issues/4641 or not.
Before filter:
After filtered:
Steps to reproduce
I've a view and entered the filter text in Data grid and no result after applied
Operating system
Windows 10
SQLiteStudio version
3.4.4