PostgresQL select query results giving tablename for each node in respose for ReadyAPI1.4.1
with ReadyAPI1.4.1 when did select query on PostGreSQL the response is having following format,
<Results>
<ResultSet fetchSize="0">
<Row rowNumber="1">
<TBLCNACCOUNTS.MASTER_USER_ID>1234</TBLCNACCOUNTS.MASTER_USER_ID>
<TBLCNACCOUNTS.USER_NAME>abc</TBLCNACCOUNTS.USER_NAME>
<TBLCNACCOUNTS.PASSWORD>pwd</TBLCNACCOUNTS.PASSWORD>
</Row>
</ResultSet>
</Results>
where as SoapUI Pro 5.1.2 gives the response for same scenario without tablename for each node as,
<Results>
<ResultSet fetchSize="128">
<Row rowNumber="1">
<MASTER_USER_ID>1234</MASTER_USER_ID>
<USER_NAME>abc</USER_NAME>
<PASSWORD>pwd</PASSWORD>
</Row>
</ResultSet>
</Results>
This is totally changing the formatting and re-use of properties from response to other test steps.
Also, when switching from MS SQL DB to PostGreSQL (Migration Tests Or different environments have different DB servers), we see this as an issue with ReadyAPI1.4.1
Request you to review and eliminate table name in responses and keep same for all DB drivers.
Thanks,
DhanaRaj.