Github user DaveBirdsall commented on a diff in the pull request: https://github.com/apache/incubator-trafodion/pull/746#discussion_r82225212 --- Diff: core/sql/comexe/LateBindInfo.cpp --- @@ -1319,37 +1049,102 @@ Int16 AnsiOrNskName::quoteNSKExtName() return 0; } -void ResolvedNameListPre1800::translateFromNewVersion(ResolvedNameList *newrnl) +/////////////////////////////////////////////////////////////////// +// class TrafSimilarityTableInfo +/////////////////////////////////////////////////////////////////// +TrafSimilarityTableInfo::TrafSimilarityTableInfo(char * tableName, + NABoolean isHive, + char * hdfsRootDir, + Int64 modTS, Int32 numPartnLevels, + Queue * hdfsDirsToCheck, + char * hdfsHostName, + Int32 hdfsPort) + : NAVersionedObject(-1), + tableName_(tableName), + hdfsRootDir_(hdfsRootDir), + modTS_(modTS), numPartnLevels_(numPartnLevels), + hdfsDirsToCheck_(hdfsDirsToCheck), + hdfsHostName_(hdfsHostName), hdfsPort_(hdfsPort) --- End diff -- Looks like we need an initializer to set flags_ = 0. If we don't do this, and isHive is false, the HIVE flag will be uninitialized (and therefore random).
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---