Github user selvaganesang commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/430#discussion_r59812021
--- Diff: core/conn/jdbc_type2/native/SqlInterface.cpp ---
@@ -246,10 +246,14 @@ SQLRETURN GetJDBCValues( SQLItemDesc_def *SQLItemDesc,
SQLItemDesc->signType = TRUE;
break;
case SQLTYPECODE_DATETIME:
+ // Calculate the length based on YYYY/MM/DD HH:MM:SS.ffffff
+ SQLItemDesc->maxLen = 20 + 6;
--- End diff --
SQLItemDesc->maxLen is used as input for some of the data types. Does this
mean it is invalid for SQLItemDesc for date columns. If so, you might consider
fixing where SQLItemDesc is obtained from SQL.
---
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.
---