Message-ID: From: "abhi-555 (@abhi-555)" To: "postgresql-interfaces/psqlodbc" Date: Tue, 18 Feb 2025 10:55:46 +0000 Subject: [postgresql-interfaces/psqlodbc] issue #92: SQLSpecialColumns not working as expected in the shared standalone List-Id: X-GitHub-Author-Id: 27189011 X-GitHub-Author-Login: abhi-555 X-GitHub-Issue: 92 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-State: open X-GitHub-Type: issue X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/issues/92 Content-Type: text/plain; charset=utf-8 After using the fix provided in https://github.com/postgresql-interfaces/psqlodbc/issues/79 I am still receiving zero rows upon running SQLSpecialColumns in the given test case in the shared standalone. Can you please run the test case in the standalone [SQLSpecialColumns.zip](https://github.com/user-attachments/files/17919927/SQLSpecialColumns.zip) and confirm if this is working for you? Test case CREATE TABLE test_special( id integer, ival integer); CREATE UNIQUE index test_special_id on public.test_special(id); CREATE UNIQUE index test_special_ui on public.test_special(ival);