Github user robertamarton commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1721#discussion_r225014858
--- Diff: core/sql/sqlcat/TrafDDLdesc.cpp ---
@@ -603,7 +603,7 @@ Lng32 TrafRoutineDesc::unpack(void * base, void *
reallocator)
librarySqlName = (librarySqlName ? (char*)((char*)base -
(Long)librarySqlName) : NULL);
libraryFileName = (libraryFileName ? (char*)((char*)base -
(Long)libraryFileName) : NULL);
signature = (signature ? (char*)((char*)base - (Long)signature) : NULL);
-
+ libBlobHandle = (libBlobHandle ? (char*)((char*)base -
(Long)libBlobHandle) : NULL);
--- End diff --
Should we also be including the schema name?
---