Github user selvaganesang commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/192#discussion_r46152896
--- Diff: win-odbc64/odbcclient/drvr35/cstmt.cpp ---
@@ -3389,7 +3389,7 @@ BOOL CStmt::setFetchOutputPerf(long rowsFetched,
SQL_DataValue_def*& outputDataV
m_FetchDataValue.numberOfRows = rowsFetched;
if(rowsFetched > 0)
{
- m_FetchDataValue.rowAddress = new unsigned long[rowsFetched];
+ m_FetchDataValue.rowAddress = new LONG_PTR[rowsFetched];
--- End diff --
Should it be VOID_PTR or (void *) instead.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---