Github user zellerh commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/323#discussion_r53044604
--- Diff: core/sql/exp/ExpCriDesc.cpp ---
@@ -78,3 +79,20 @@ NA_EIDPROC Lng32 ex_cri_desc::unpack(void * base, void *
reallocator)
}
return NAVersionedObject::unpack(base, reallocator);
}
+
+NA_EIDPROC void ex_cri_desc::display(const char* title)
+{
+ cout << title << endl;
+
+ unsigned short tuples = noTuples();
+ char buf[100];
+ for (Int32 i=0; i<tuples; i++) {
+ ExpTupleDesc* tDesc = getTupleDescriptor(i);
+ if ( tDesc ) {
+ sprintf(buf, "%dth tuple:", i);
+ tDesc->display(buf);
+ } else
+ cout << i << "th tuple's TupleDesc is NULL" << endl;
--- End diff --
In this case it could display a hex dump of the tupp
---
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.
---