Github user xwq commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/430#discussion_r59845709
--- 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 --
JDBC T2 use VARCHAR to handle DATE type.So , we need set the maxLen in T2.
Maybe a better fix is using the binary time format. But I need more time to
investigate how to use binary date format from SQLCLI . So I want to submit
this little fix to make the MT-DCS can run with windows ODBC.
---
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.
---