When two tables with same name exists in different database schema's adapter returns columns of both. That results in various problems.
For example when I have two tables:
dbo.table1 - with 2 columns
project1.table1 - with 3 columns
Adapter returns 5 columns!
Problem is in SQLServerAdapter.columns method which incorrectly handles table schema's.
I have patch (for 2-3-stable branch) but where should I put it?
Thanks