Message-ID: From: "arturgspb (@arturgspb)" To: "pgjdbc/pgjdbc" Date: Sun, 27 Mar 2016 13:42:47 +0000 Subject: [pgjdbc/pgjdbc] issue #538: Why getSchemaName return empty string or exists getBaseSchemaName and getColumnName return getColumnLabel? List-Id: X-GitHub-Assignees: davecramer X-GitHub-Author-Id: 1708175 X-GitHub-Author-Login: arturgspb X-GitHub-Issue: 538 X-GitHub-Labels: compat-other-vendor-drv X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: open X-GitHub-Type: issue X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/issues/538 Content-Type: text/plain; charset=utf-8 Hello! I have a problem in the integration of pgjdbc with spring jdbc. Spring JDBC code: https://github.com/spring-projects/spring-framework/blob/master/spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/ResultSetWrappingSqlRowSetMetaData.java Spring encapsulates ResultSetMetaData and call it method getSchemaName, but pgjdbc return empty string. Why pgjdbc not proxy call getBaseSchemaName? getTableName have proxy call getBaseTableName. getColumnName real return getColumnLabel, but I think will better if return getBaseColumnName.